diff options
author | adam j. sontag <ajpiano@ajpiano.com> | 2010-05-12 14:32:14 +0800 |
---|---|---|
committer | Richard D. Worth <rdworth@gmail.com> | 2010-05-13 22:35:40 +0800 |
commit | 05725e25aea335ecb9c7cf3b03eba8ee68153fb5 (patch) | |
tree | 2ebd72f0f14093449e1193d64cbeef1e381d8fd3 /themes | |
parent | dc646c01fe97b54e3bb486b55caacf69bd3b12ac (diff) | |
download | jquery-ui-05725e25aea335ecb9c7cf3b03eba8ee68153fb5.tar.gz jquery-ui-05725e25aea335ecb9c7cf3b03eba8ee68153fb5.zip |
Selectable: Add default CSS for ui-selectable-helper to CSS framework to allow user override. Fixes #5607 - Selectable has helper css hardcoded in JS
Diffstat (limited to 'themes')
-rw-r--r-- | themes/base/jquery.ui.base.css | 1 | ||||
-rw-r--r-- | themes/base/jquery.ui.selectable.css | 3 |
2 files changed, 4 insertions, 0 deletions
diff --git a/themes/base/jquery.ui.base.css b/themes/base/jquery.ui.base.css index eed06a277..66a7c24e9 100644 --- a/themes/base/jquery.ui.base.css +++ b/themes/base/jquery.ui.base.css @@ -7,5 +7,6 @@ @import url("jquery.ui.dialog.css"); @import url("jquery.ui.progressbar.css"); @import url("jquery.ui.resizable.css"); +@import url("jquery.ui.selectable.css"); @import url("jquery.ui.slider.css"); @import url("jquery.ui.tabs.css"); diff --git a/themes/base/jquery.ui.selectable.css b/themes/base/jquery.ui.selectable.css new file mode 100644 index 000000000..c5d46ce24 --- /dev/null +++ b/themes/base/jquery.ui.selectable.css @@ -0,0 +1,3 @@ +/* Selectable +----------------------------------*/ +.ui-selectable-helper { border:1px dotted black } |