This Bugzilla instance is a read-only archive of historic NetBeans bug reports. To report a bug in NetBeans please follow the project's instructions for reporting issues.

Bug 150828 - Bind CSS style
Summary: Bind CSS style
Status: NEW
Alias: None
Product: web
Classification: Unclassified
Component: HTML Editor (show other bugs)
Version: 6.x
Hardware: All All
: P2 blocker (vote)
Assignee: Milutin Kristofic
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2008-10-21 10:06 UTC by Marek Fukala
Modified: 2014-10-06 13:27 UTC (History)
1 user (show)

See Also:
Issue Type: ENHANCEMENT
Exception Reporter:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description Marek Fukala 2008-10-21 10:06:58 UTC
An html editor popup action allowing to bind an external stylesheet. Allows either to refer to it using

<link href="..." rel="stylesheet" type="text/css" /> tag

or importing it by

<style type="text/css">
@import url("../NetBeansProjects/WebApplication1/web/2.css");
</style>
Comment 1 Petr Jiricka 2009-07-28 13:55:54 UTC
Could the "Insert code" (Ctrl+I) action be used for this?
 
Comment 2 Marek Fukala 2009-07-30 11:13:29 UTC
sure, insert code is an option, though not sure if that would be straightforward enought. The insert link action seems
to be more similar to "import class" than to insert code.