lolita 3.4.2 → 3.4.3

Sign up to get free protection for your applications and to get access to all the features.
Files changed (146) hide show
  1. checksums.yaml +4 -4
  2. data/.gitignore +36 -36
  3. data/Gemfile +29 -29
  4. data/README.md +147 -147
  5. data/Rakefile +6 -6
  6. data/app/assets/javascripts/lolita/application.js +6 -6
  7. data/app/assets/javascripts/lolita/tab.js +100 -100
  8. data/app/assets/stylesheets/lolita/PIE-custom.htc +87 -87
  9. data/app/assets/stylesheets/lolita/PIE.htc +81 -81
  10. data/app/assets/stylesheets/lolita/application.css +6 -6
  11. data/app/assets/stylesheets/lolita/default.css.erb +169 -169
  12. data/app/assets/stylesheets/lolita/jquery-ui-1.8.16.lolita.css.erb +567 -567
  13. data/app/assets/stylesheets/lolita/style.css.erb +553 -553
  14. data/app/helpers/components/lolita/configuration/list_component.rb +10 -10
  15. data/app/helpers/components/lolita/configuration_component.rb +20 -20
  16. data/app/views/components/lolita/configuration/column/_first.html.haml +1 -1
  17. data/app/views/components/lolita/configuration/column/header/_first.html.haml +1 -1
  18. data/app/views/components/lolita/configuration/column/header/_sort.html.haml +6 -6
  19. data/app/views/components/lolita/configuration/columns/header/_display.html.haml +5 -5
  20. data/app/views/components/lolita/configuration/field/array/checkbox/_display.html.haml +7 -7
  21. data/app/views/components/lolita/configuration/field/string/text/_display.html.haml +7 -7
  22. data/app/views/components/lolita/configuration/search/_display.html.haml +2 -2
  23. data/app/views/components/lolita/configuration/tab/_display.html.haml +3 -3
  24. data/app/views/components/lolita/configuration/tabs/_form.html.haml +6 -6
  25. data/app/views/kaminari/lolita/_first_page.html.erb +11 -11
  26. data/app/views/kaminari/lolita/_gap.html.erb +8 -8
  27. data/app/views/kaminari/lolita/_last_page.html.erb +11 -11
  28. data/app/views/kaminari/lolita/_next_page.html.erb +11 -11
  29. data/app/views/kaminari/lolita/_page.html.erb +12 -12
  30. data/app/views/kaminari/lolita/_paginator.html.erb +23 -23
  31. data/app/views/kaminari/lolita/_prev_page.html.erb +11 -11
  32. data/app/views/lolita/info/index.html.erb +232 -232
  33. data/author +1 -1
  34. data/config/routes.rb +6 -6
  35. data/lib/generators/lolita/install_generator.rb +19 -19
  36. data/lib/generators/lolita/uninstall_generator.rb +70 -70
  37. data/lib/generators/templates/lolita.rb +13 -13
  38. data/lib/lolita.rb +140 -140
  39. data/lib/lolita/adapter/abstract_adapter.rb +15 -15
  40. data/lib/lolita/adapter/active_record.rb +227 -227
  41. data/lib/lolita/adapter/common_helper.rb +221 -221
  42. data/lib/lolita/adapter/field_helper.rb +18 -18
  43. data/lib/lolita/adapter/mongoid.rb +241 -241
  44. data/lib/lolita/components/base.rb +11 -11
  45. data/lib/lolita/configuration.rb +60 -60
  46. data/lib/lolita/configuration/column.rb +181 -181
  47. data/lib/lolita/configuration/field/big_decimal.rb +12 -12
  48. data/lib/lolita/configuration/field/boolean.rb +12 -12
  49. data/lib/lolita/configuration/field/date.rb +12 -12
  50. data/lib/lolita/configuration/field/hidden.rb +12 -12
  51. data/lib/lolita/configuration/field/integer.rb +11 -11
  52. data/lib/lolita/configuration/field/string.rb +16 -16
  53. data/lib/lolita/configuration/field/time.rb +13 -13
  54. data/lib/lolita/configuration/field_set.rb +25 -25
  55. data/lib/lolita/configuration/filter.rb +116 -116
  56. data/lib/lolita/configuration/list.rb +200 -200
  57. data/lib/lolita/configuration/search.rb +104 -104
  58. data/lib/lolita/controllers/component_helpers.rb +156 -156
  59. data/lib/lolita/controllers/internal_helpers.rb +71 -71
  60. data/lib/lolita/controllers/url_helpers.rb +7 -7
  61. data/lib/lolita/dbi/base.rb +56 -56
  62. data/lib/lolita/hooks/named_hook.rb +125 -125
  63. data/lib/lolita/lazy_loader.rb +54 -54
  64. data/lib/lolita/navigation/tree.rb +132 -132
  65. data/lib/lolita/rails/engine.rb +23 -23
  66. data/lib/lolita/rails/routes.rb +129 -129
  67. data/lib/lolita/ruby_ext/accessors.rb +26 -26
  68. data/lib/lolita/search/simple.rb +75 -75
  69. data/lib/lolita/support/formatter.rb +62 -62
  70. data/lib/lolita/support/formatter/rails.rb +56 -56
  71. data/lib/lolita/system_configuration/base.rb +178 -178
  72. data/lib/lolita/test/matchers.rb +77 -77
  73. data/lib/lolita/version.rb +30 -30
  74. data/lib/tasks/tinymce-assets.rake +6 -6
  75. data/lolita.gemspec +34 -34
  76. data/spec/adapter/common_helper_spec.rb +95 -95
  77. data/spec/adapter_helper.rb +42 -42
  78. data/spec/builder_spec.rb +120 -120
  79. data/spec/configuration/base_spec.rb +22 -22
  80. data/spec/configuration/field_spec.rb +118 -118
  81. data/spec/configuration/filter_spec.rb +131 -131
  82. data/spec/configuration/tab_spec.rb +187 -187
  83. data/spec/configuration/tabs_spec.rb +120 -120
  84. data/spec/generators/lolita/install_generator_spec.rb +54 -54
  85. data/spec/generators/lolita/uninstall_generator_spec.rb +48 -48
  86. data/spec/orm/mongoid.rb +12 -12
  87. data/spec/rails_app/app/controllers/application_controller.rb +3 -3
  88. data/spec/rails_app/app/helpers/application_helper.rb +3 -3
  89. data/spec/rails_app/app/mongoid/address.rb +7 -7
  90. data/spec/rails_app/app/mongoid/category.rb +18 -18
  91. data/spec/rails_app/app/mongoid/comment.rb +5 -5
  92. data/spec/rails_app/app/mongoid/post.rb +30 -30
  93. data/spec/rails_app/app/mongoid/preference.rb +5 -5
  94. data/spec/rails_app/app/mongoid/profile.rb +13 -13
  95. data/spec/rails_app/app/mongoid/tag.rb +3 -3
  96. data/spec/rails_app/app/views/components/lolita/configuration/list/_body_cell.html.erb +1 -1
  97. data/spec/rails_app/config/application.rb +33 -33
  98. data/spec/rails_app/config/boot.rb +7 -7
  99. data/spec/rails_app/config/environment.rb +5 -5
  100. data/spec/rails_app/config/environments/development.rb +23 -23
  101. data/spec/rails_app/config/environments/production.rb +37 -37
  102. data/spec/rails_app/config/environments/test.rb +37 -37
  103. data/spec/rails_app/config/initializers/backtrace_silencers.rb +7 -7
  104. data/spec/rails_app/config/initializers/inflections.rb +2 -2
  105. data/spec/rails_app/config/initializers/secret_token.rb +1 -1
  106. data/spec/rails_app/config/routes.rb +2 -2
  107. data/spec/rails_app/lib/lolita/configuration/field/my_custom_collection.rb +13 -13
  108. data/spec/rails_app/public/javascripts/jquery-1.5.1.min.js +15 -15
  109. data/spec/rails_app/public/javascripts/lolita/main.js +6 -6
  110. data/spec/rails_app/public/javascripts/modernizr-1.7.min.js +1 -1
  111. data/spec/rails_app/public/javascripts/rails.js +137 -137
  112. data/spec/rails_app/public/javascripts/tinymce/langs/en.js +221 -221
  113. data/spec/rails_app/public/javascripts/tinymce/license.txt +504 -504
  114. data/spec/rails_app/public/javascripts/tinymce/themes/advanced/about.htm +52 -52
  115. data/spec/rails_app/public/javascripts/tinymce/themes/advanced/anchor.htm +26 -26
  116. data/spec/rails_app/public/javascripts/tinymce/themes/advanced/charmap.htm +51 -51
  117. data/spec/rails_app/public/javascripts/tinymce/themes/advanced/color_picker.htm +74 -74
  118. data/spec/rails_app/public/javascripts/tinymce/themes/advanced/editor_template_src.js +1328 -1328
  119. data/spec/rails_app/public/javascripts/tinymce/themes/advanced/image.htm +80 -80
  120. data/spec/rails_app/public/javascripts/tinymce/themes/advanced/js/about.js +73 -73
  121. data/spec/rails_app/public/javascripts/tinymce/themes/advanced/js/anchor.js +42 -42
  122. data/spec/rails_app/public/javascripts/tinymce/themes/advanced/js/charmap.js +354 -354
  123. data/spec/rails_app/public/javascripts/tinymce/themes/advanced/js/color_picker.js +329 -329
  124. data/spec/rails_app/public/javascripts/tinymce/themes/advanced/js/image.js +247 -247
  125. data/spec/rails_app/public/javascripts/tinymce/themes/advanced/js/link.js +153 -153
  126. data/spec/rails_app/public/javascripts/tinymce/themes/advanced/js/source_editor.js +56 -56
  127. data/spec/rails_app/public/javascripts/tinymce/themes/advanced/langs/en.js +68 -68
  128. data/spec/rails_app/public/javascripts/tinymce/themes/advanced/langs/en_dlg.js +53 -53
  129. data/spec/rails_app/public/javascripts/tinymce/themes/advanced/link.htm +57 -57
  130. data/spec/rails_app/public/javascripts/tinymce/themes/advanced/shortcuts.htm +47 -47
  131. data/spec/rails_app/public/javascripts/tinymce/themes/advanced/skins/cirkuit/content.css +66 -66
  132. data/spec/rails_app/public/javascripts/tinymce/themes/advanced/skins/cirkuit/dialog.css +117 -117
  133. data/spec/rails_app/public/javascripts/tinymce/themes/advanced/skins/cirkuit/ui.css +988 -988
  134. data/spec/rails_app/public/javascripts/tinymce/themes/advanced/source_editor.htm +25 -25
  135. data/spec/rails_app/public/javascripts/tinymce/tiny_mce_popup.js +4 -4
  136. data/spec/rails_app/public/stylesheets/lolita/default.css +169 -169
  137. data/spec/rails_app/public/stylesheets/lolita/style.css +214 -214
  138. data/spec/spec_helper.rb +51 -51
  139. data/vendor/assets/javascripts/application_vendor_lolita.js +4 -4
  140. data/vendor/assets/javascripts/jquery-numeric.js +279 -279
  141. data/vendor/assets/javascripts/modernizr_1_7_min.js +1 -1
  142. data/vendor/assets/javascripts/tinymce/themes/advanced/skins/cirkuit/content.css +66 -66
  143. data/vendor/assets/javascripts/tinymce/themes/advanced/skins/cirkuit/dialog.css +117 -117
  144. data/vendor/assets/javascripts/tinymce/themes/advanced/skins/cirkuit/ui.css +988 -988
  145. data/vendor/assets/stylesheets/jquery-ui-1.8.16.custom.css +567 -567
  146. metadata +4 -3
@@ -1,2 +1,2 @@
1
- // Modernizr v1.7 www.modernizr.com
1
+ // Modernizr v1.7 www.modernizr.com
2
2
  window.Modernizr=function(a,b,c){function G(){e.input=function(a){for(var b=0,c=a.length;b<c;b++)t[a[b]]=!!(a[b]in l);return t}("autocomplete autofocus list placeholder max min multiple pattern required step".split(" ")),e.inputtypes=function(a){for(var d=0,e,f,h,i=a.length;d<i;d++)l.setAttribute("type",f=a[d]),e=l.type!=="text",e&&(l.value=m,l.style.cssText="position:absolute;visibility:hidden;",/^range$/.test(f)&&l.style.WebkitAppearance!==c?(g.appendChild(l),h=b.defaultView,e=h.getComputedStyle&&h.getComputedStyle(l,null).WebkitAppearance!=="textfield"&&l.offsetHeight!==0,g.removeChild(l)):/^(search|tel)$/.test(f)||(/^(url|email)$/.test(f)?e=l.checkValidity&&l.checkValidity()===!1:/^color$/.test(f)?(g.appendChild(l),g.offsetWidth,e=l.value!=m,g.removeChild(l)):e=l.value!=m)),s[a[d]]=!!e;return s}("search tel url email datetime date month week time datetime-local number range color".split(" "))}function F(a,b){var c=a.charAt(0).toUpperCase()+a.substr(1),d=(a+" "+p.join(c+" ")+c).split(" ");return!!E(d,b)}function E(a,b){for(var d in a)if(k[a[d]]!==c&&(!b||b(a[d],j)))return!0}function D(a,b){return(""+a).indexOf(b)!==-1}function C(a,b){return typeof a===b}function B(a,b){return A(o.join(a+";")+(b||""))}function A(a){k.cssText=a}var d="1.7",e={},f=!0,g=b.documentElement,h=b.head||b.getElementsByTagName("head")[0],i="modernizr",j=b.createElement(i),k=j.style,l=b.createElement("input"),m=":)",n=Object.prototype.toString,o=" -webkit- -moz- -o- -ms- -khtml- ".split(" "),p="Webkit Moz O ms Khtml".split(" "),q={svg:"http://www.w3.org/2000/svg"},r={},s={},t={},u=[],v,w=function(a){var c=b.createElement("style"),d=b.createElement("div"),e;c.textContent=a+"{#modernizr{height:3px}}",h.appendChild(c),d.id="modernizr",g.appendChild(d),e=d.offsetHeight===3,c.parentNode.removeChild(c),d.parentNode.removeChild(d);return!!e},x=function(){function d(d,e){e=e||b.createElement(a[d]||"div");var f=(d="on"+d)in e;f||(e.setAttribute||(e=b.createElement("div")),e.setAttribute&&e.removeAttribute&&(e.setAttribute(d,""),f=C(e[d],"function"),C(e[d],c)||(e[d]=c),e.removeAttribute(d))),e=null;return f}var a={select:"input",change:"input",submit:"form",reset:"form",error:"img",load:"img",abort:"img"};return d}(),y=({}).hasOwnProperty,z;C(y,c)||C(y.call,c)?z=function(a,b){return b in a&&C(a.constructor.prototype[b],c)}:z=function(a,b){return y.call(a,b)},r.flexbox=function(){function c(a,b,c,d){a.style.cssText=o.join(b+":"+c+";")+(d||"")}function a(a,b,c,d){b+=":",a.style.cssText=(b+o.join(c+";"+b)).slice(0,-b.length)+(d||"")}var d=b.createElement("div"),e=b.createElement("div");a(d,"display","box","width:42px;padding:0;"),c(e,"box-flex","1","width:10px;"),d.appendChild(e),g.appendChild(d);var f=e.offsetWidth===42;d.removeChild(e),g.removeChild(d);return f},r.canvas=function(){var a=b.createElement("canvas");return a.getContext&&a.getContext("2d")},r.canvastext=function(){return e.canvas&&C(b.createElement("canvas").getContext("2d").fillText,"function")},r.webgl=function(){return!!a.WebGLRenderingContext},r.touch=function(){return"ontouchstart"in a||w("@media ("+o.join("touch-enabled),(")+"modernizr)")},r.geolocation=function(){return!!navigator.geolocation},r.postmessage=function(){return!!a.postMessage},r.websqldatabase=function(){var b=!!a.openDatabase;return b},r.indexedDB=function(){for(var b=-1,c=p.length;++b<c;){var d=p[b].toLowerCase();if(a[d+"_indexedDB"]||a[d+"IndexedDB"])return!0}return!1},r.hashchange=function(){return x("hashchange",a)&&(b.documentMode===c||b.documentMode>7)},r.history=function(){return !!(a.history&&history.pushState)},r.draganddrop=function(){return x("dragstart")&&x("drop")},r.websockets=function(){return"WebSocket"in a},r.rgba=function(){A("background-color:rgba(150,255,150,.5)");return D(k.backgroundColor,"rgba")},r.hsla=function(){A("background-color:hsla(120,40%,100%,.5)");return D(k.backgroundColor,"rgba")||D(k.backgroundColor,"hsla")},r.multiplebgs=function(){A("background:url(//:),url(//:),red url(//:)");return(new RegExp("(url\\s*\\(.*?){3}")).test(k.background)},r.backgroundsize=function(){return F("backgroundSize")},r.borderimage=function(){return F("borderImage")},r.borderradius=function(){return F("borderRadius","",function(a){return D(a,"orderRadius")})},r.boxshadow=function(){return F("boxShadow")},r.textshadow=function(){return b.createElement("div").style.textShadow===""},r.opacity=function(){B("opacity:.55");return/^0.55$/.test(k.opacity)},r.cssanimations=function(){return F("animationName")},r.csscolumns=function(){return F("columnCount")},r.cssgradients=function(){var a="background-image:",b="gradient(linear,left top,right bottom,from(#9f9),to(white));",c="linear-gradient(left top,#9f9, white);";A((a+o.join(b+a)+o.join(c+a)).slice(0,-a.length));return D(k.backgroundImage,"gradient")},r.cssreflections=function(){return F("boxReflect")},r.csstransforms=function(){return!!E(["transformProperty","WebkitTransform","MozTransform","OTransform","msTransform"])},r.csstransforms3d=function(){var a=!!E(["perspectiveProperty","WebkitPerspective","MozPerspective","OPerspective","msPerspective"]);a&&"webkitPerspective"in g.style&&(a=w("@media ("+o.join("transform-3d),(")+"modernizr)"));return a},r.csstransitions=function(){return F("transitionProperty")},r.fontface=function(){var a,c,d=h||g,e=b.createElement("style"),f=b.implementation||{hasFeature:function(){return!1}};e.type="text/css",d.insertBefore(e,d.firstChild),a=e.sheet||e.styleSheet;var i=f.hasFeature("CSS2","")?function(b){if(!a||!b)return!1;var c=!1;try{a.insertRule(b,0),c=/src/i.test(a.cssRules[0].cssText),a.deleteRule(a.cssRules.length-1)}catch(d){}return c}:function(b){if(!a||!b)return!1;a.cssText=b;return a.cssText.length!==0&&/src/i.test(a.cssText)&&a.cssText.replace(/\r+|\n+/g,"").indexOf(b.split(" ")[0])===0};c=i('@font-face { font-family: "font"; src: url(data:,); }'),d.removeChild(e);return c},r.video=function(){var a=b.createElement("video"),c=!!a.canPlayType;if(c){c=new Boolean(c),c.ogg=a.canPlayType('video/ogg; codecs="theora"');var d='video/mp4; codecs="avc1.42E01E';c.h264=a.canPlayType(d+'"')||a.canPlayType(d+', mp4a.40.2"'),c.webm=a.canPlayType('video/webm; codecs="vp8, vorbis"')}return c},r.audio=function(){var a=b.createElement("audio"),c=!!a.canPlayType;c&&(c=new Boolean(c),c.ogg=a.canPlayType('audio/ogg; codecs="vorbis"'),c.mp3=a.canPlayType("audio/mpeg;"),c.wav=a.canPlayType('audio/wav; codecs="1"'),c.m4a=a.canPlayType("audio/x-m4a;")||a.canPlayType("audio/aac;"));return c},r.localstorage=function(){try{return!!localStorage.getItem}catch(a){return!1}},r.sessionstorage=function(){try{return!!sessionStorage.getItem}catch(a){return!1}},r.webWorkers=function(){return!!a.Worker},r.applicationcache=function(){return!!a.applicationCache},r.svg=function(){return!!b.createElementNS&&!!b.createElementNS(q.svg,"svg").createSVGRect},r.inlinesvg=function(){var a=b.createElement("div");a.innerHTML="<svg/>";return(a.firstChild&&a.firstChild.namespaceURI)==q.svg},r.smil=function(){return!!b.createElementNS&&/SVG/.test(n.call(b.createElementNS(q.svg,"animate")))},r.svgclippaths=function(){return!!b.createElementNS&&/SVG/.test(n.call(b.createElementNS(q.svg,"clipPath")))};for(var H in r)z(r,H)&&(v=H.toLowerCase(),e[v]=r[H](),u.push((e[v]?"":"no-")+v));e.input||G(),e.crosswindowmessaging=e.postmessage,e.historymanagement=e.history,e.addTest=function(a,b){a=a.toLowerCase();if(!e[a]){b=!!b(),g.className+=" "+(b?"":"no-")+a,e[a]=b;return e}},A(""),j=l=null,f&&a.attachEvent&&function(){var a=b.createElement("div");a.innerHTML="<elem></elem>";return a.childNodes.length!==1}()&&function(a,b){function p(a,b){var c=-1,d=a.length,e,f=[];while(++c<d)e=a[c],(b=e.media||b)!="screen"&&f.push(p(e.imports,b),e.cssText);return f.join("")}function o(a){var b=-1;while(++b<e)a.createElement(d[b])}var c="abbr|article|aside|audio|canvas|details|figcaption|figure|footer|header|hgroup|mark|meter|nav|output|progress|section|summary|time|video",d=c.split("|"),e=d.length,f=new RegExp("(^|\\s)("+c+")","gi"),g=new RegExp("<(/*)("+c+")","gi"),h=new RegExp("(^|[^\\n]*?\\s)("+c+")([^\\n]*)({[\\n\\w\\W]*?})","gi"),i=b.createDocumentFragment(),j=b.documentElement,k=j.firstChild,l=b.createElement("body"),m=b.createElement("style"),n;o(b),o(i),k.insertBefore(m,k.firstChild),m.media="print",a.attachEvent("onbeforeprint",function(){var a=-1,c=p(b.styleSheets,"all"),k=[],o;n=n||b.body;while((o=h.exec(c))!=null)k.push((o[1]+o[2]+o[3]).replace(f,"$1.iepp_$2")+o[4]);m.styleSheet.cssText=k.join("\n");while(++a<e){var q=b.getElementsByTagName(d[a]),r=q.length,s=-1;while(++s<r)q[s].className.indexOf("iepp_")<0&&(q[s].className+=" iepp_"+d[a])}i.appendChild(n),j.appendChild(l),l.className=n.className,l.innerHTML=n.innerHTML.replace(g,"<$1font")}),a.attachEvent("onafterprint",function(){l.innerHTML="",j.removeChild(l),j.appendChild(n),m.styleSheet.cssText=""})}(a,b),e._enableHTML5=f,e._version=d,g.className=g.className.replace(/\bno-js\b/,"")+" js "+u.join(" ");return e}(this,this.document)
@@ -1,66 +1,66 @@
1
- /*body, td, pre {color:#000; font-family:Verdana, Arial, Helvetica, sans-serif; font-size:10px; margin:8px;}
2
- body {background:#FFF;}
3
- body.mceForceColors {background:#FFF; color:#000;}
4
- h1 {font-size: 2em}
5
- h2 {font-size: 1.5em}
6
- h3 {font-size: 1.17em}
7
- h4 {font-size: 1em}
8
- h5 {font-size: .83em}
9
- h6 {font-size: .75em}
10
- .mceItemTable, .mceItemTable td, .mceItemTable th, .mceItemTable caption, .mceItemVisualAid {border: 1px dashed #BBB;}
11
- a.mceItemAnchor {display:inline-block; width:11px !important; height:11px !important; background:url(img/items.gif) no-repeat 0 0;}
12
- td.mceSelected, th.mceSelected {background-color:#3399ff !important}
13
- img {border:0;}
14
- table {cursor:default}
15
- table td, table th {cursor:text}
16
- ins {border-bottom:1px solid green; text-decoration: none; color:green}
17
- del {color:red; text-decoration:line-through}
18
- cite {border-bottom:1px dashed blue}
19
- acronym {border-bottom:1px dotted #CCC; cursor:help}
20
- abbr {border-bottom:1px dashed #CCC; cursor:help}
21
-
22
- * html body {
23
- scrollbar-3dlight-color:#F0F0EE;
24
- scrollbar-arrow-color:#676662;
25
- scrollbar-base-color:#F0F0EE;
26
- scrollbar-darkshadow-color:#DDD;
27
- scrollbar-face-color:#E0E0DD;
28
- scrollbar-highlight-color:#F0F0EE;
29
- scrollbar-shadow-color:#F0F0EE;
30
- scrollbar-track-color:#F5F5F5;
31
- }
32
-
33
- img:-moz-broken {-moz-force-broken-image-icon:1; width:24px; height:24px}
34
- font[face=mceinline] {font-family:inherit !important}*/
35
- body, td, pre {color:#000; font: 12px/1.5em "Lucida Grande", Helvetica, Arial, sans-serif; margin:8px;}
36
- html,body {padding: 0 !important; margin: 0 !important; background:#fff !important;}
37
- body {height: 94% !important; padding: 0 !important;}
38
- body.mceForceColors {background:#FFF; color:#000;}
39
- h1 {font-size: 2em}
40
- h2 {font-size: 1.5em}
41
- h3 {font-size: 1.17em}
42
- h4 {font-size: 1em}
43
- h5 {font-size: .83em}
44
- h6 {font-size: .75em}
45
- .mceItemTable, .mceItemTable td, .mceItemTable th, .mceItemTable caption, .mceItemVisualAid {border: 1px dashed #BBB;}
46
- a.mceItemAnchor {width:12px; line-height:6px; overflow:hidden; padding-left:12px; background:url(img/items.gif) no-repeat bottom left;}
47
- img.mceItemAnchor {width:12px; height:12px; background:url(img/items.gif) no-repeat;}
48
- img {border:0;}
49
- table {cursor:default}
50
- table td, table th {cursor:text}
51
- ins {border-bottom:1px solid green; text-decoration: none; color:green}
52
- del {color:red; text-decoration:line-through}
53
- cite {border-bottom:1px dashed blue}
54
- acronym {border-bottom:1px dotted #CCC; cursor:help}
55
- abbr, html\:abbr {border-bottom:1px dashed #CCC; cursor:help}
56
-
57
- * html body {
58
- scrollbar-3dlight-color:#F0F0EE;
59
- scrollbar-arrow-color:#676662;
60
- scrollbar-base-color:#F0F0EE;
61
- scrollbar-darkshadow-color:#DDD;
62
- scrollbar-face-color:#E0E0DD;
63
- scrollbar-highlight-color:#F0F0EE;
64
- scrollbar-shadow-color:#F0F0EE;
65
- scrollbar-track-color:#F5F5F5;
66
- }
1
+ /*body, td, pre {color:#000; font-family:Verdana, Arial, Helvetica, sans-serif; font-size:10px; margin:8px;}
2
+ body {background:#FFF;}
3
+ body.mceForceColors {background:#FFF; color:#000;}
4
+ h1 {font-size: 2em}
5
+ h2 {font-size: 1.5em}
6
+ h3 {font-size: 1.17em}
7
+ h4 {font-size: 1em}
8
+ h5 {font-size: .83em}
9
+ h6 {font-size: .75em}
10
+ .mceItemTable, .mceItemTable td, .mceItemTable th, .mceItemTable caption, .mceItemVisualAid {border: 1px dashed #BBB;}
11
+ a.mceItemAnchor {display:inline-block; width:11px !important; height:11px !important; background:url(img/items.gif) no-repeat 0 0;}
12
+ td.mceSelected, th.mceSelected {background-color:#3399ff !important}
13
+ img {border:0;}
14
+ table {cursor:default}
15
+ table td, table th {cursor:text}
16
+ ins {border-bottom:1px solid green; text-decoration: none; color:green}
17
+ del {color:red; text-decoration:line-through}
18
+ cite {border-bottom:1px dashed blue}
19
+ acronym {border-bottom:1px dotted #CCC; cursor:help}
20
+ abbr {border-bottom:1px dashed #CCC; cursor:help}
21
+
22
+ * html body {
23
+ scrollbar-3dlight-color:#F0F0EE;
24
+ scrollbar-arrow-color:#676662;
25
+ scrollbar-base-color:#F0F0EE;
26
+ scrollbar-darkshadow-color:#DDD;
27
+ scrollbar-face-color:#E0E0DD;
28
+ scrollbar-highlight-color:#F0F0EE;
29
+ scrollbar-shadow-color:#F0F0EE;
30
+ scrollbar-track-color:#F5F5F5;
31
+ }
32
+
33
+ img:-moz-broken {-moz-force-broken-image-icon:1; width:24px; height:24px}
34
+ font[face=mceinline] {font-family:inherit !important}*/
35
+ body, td, pre {color:#000; font: 12px/1.5em "Lucida Grande", Helvetica, Arial, sans-serif; margin:8px;}
36
+ html,body {padding: 0 !important; margin: 0 !important; background:#fff !important;}
37
+ body {height: 94% !important; padding: 0 !important;}
38
+ body.mceForceColors {background:#FFF; color:#000;}
39
+ h1 {font-size: 2em}
40
+ h2 {font-size: 1.5em}
41
+ h3 {font-size: 1.17em}
42
+ h4 {font-size: 1em}
43
+ h5 {font-size: .83em}
44
+ h6 {font-size: .75em}
45
+ .mceItemTable, .mceItemTable td, .mceItemTable th, .mceItemTable caption, .mceItemVisualAid {border: 1px dashed #BBB;}
46
+ a.mceItemAnchor {width:12px; line-height:6px; overflow:hidden; padding-left:12px; background:url(img/items.gif) no-repeat bottom left;}
47
+ img.mceItemAnchor {width:12px; height:12px; background:url(img/items.gif) no-repeat;}
48
+ img {border:0;}
49
+ table {cursor:default}
50
+ table td, table th {cursor:text}
51
+ ins {border-bottom:1px solid green; text-decoration: none; color:green}
52
+ del {color:red; text-decoration:line-through}
53
+ cite {border-bottom:1px dashed blue}
54
+ acronym {border-bottom:1px dotted #CCC; cursor:help}
55
+ abbr, html\:abbr {border-bottom:1px dashed #CCC; cursor:help}
56
+
57
+ * html body {
58
+ scrollbar-3dlight-color:#F0F0EE;
59
+ scrollbar-arrow-color:#676662;
60
+ scrollbar-base-color:#F0F0EE;
61
+ scrollbar-darkshadow-color:#DDD;
62
+ scrollbar-face-color:#E0E0DD;
63
+ scrollbar-highlight-color:#F0F0EE;
64
+ scrollbar-shadow-color:#F0F0EE;
65
+ scrollbar-track-color:#F5F5F5;
66
+ }
@@ -1,117 +1,117 @@
1
- /* Generic */
2
- body {
3
- font-family:Verdana, Arial, Helvetica, sans-serif; font-size:11px;
4
- background:#f1f1f1;
5
- padding:0;
6
- margin:8px 8px 0 8px;
7
- }
8
-
9
- html {background:#f1f1f1;}
10
- td {font-family:Verdana, Arial, Helvetica, sans-serif; font-size:10px;}
11
- textarea {resize:none;outline:none;}
12
- a:link, a:visited {color:black;}
13
- a:hover {color:#2B6FB6;}
14
- .nowrap {white-space: nowrap}
15
-
16
- /* Forms */
17
- fieldset {margin:0; padding:4px; border:1px solid #dfdfdf; font-family:Verdana, Arial; font-size:10px;}
18
- legend {color:#2B6FB6; font-weight:bold;}
19
- label.msg {display:none;}
20
- label.invalid {color:#EE0000; display:inline;}
21
- input.invalid {border:1px solid #EE0000;}
22
- input {background:#FFF; border:1px solid #dfdfdf;}
23
- input, select, textarea {font-family:Verdana, Arial, Helvetica, sans-serif; font-size:10px;}
24
- input, select, textarea {border:1px solid #dfdfdf;}
25
- input.radio {border:1px none #000000; background:transparent; vertical-align:middle;}
26
- input.checkbox {border:1px none #000000; background:transparent; vertical-align:middle;}
27
- .input_noborder {border:0;}
28
-
29
- /* Buttons */
30
- #insert, #cancel, #apply, .mceActionPanel .button, input.mceButton, .updateButton {
31
- border: 1px solid #bbb;
32
- margin:0;
33
- padding:0 0 1px;
34
- font-weight:bold;
35
- font-size: 11px;
36
- width:94px;
37
- height:24px;
38
- background:url(img/fade-butt.png) 0 0;
39
- color:#000;
40
- cursor:pointer;
41
- -moz-border-radius: 3px;
42
- -khtml-border-radius: 3px;
43
- -webkit-border-radius: 3px;
44
- border-radius: 3px;
45
- }
46
- #insert:hover, #cancel:hover, input.mceButton:hover, .updateButton:hover,
47
- #insert:focus, #cancel:focus, input.mceButton:focus, .updateButton:focus {
48
- border: 1px solid #555;
49
- }
50
-
51
- /* Browse */
52
- a.browse span {display:block; width:20px; height:18px; background:url(../../img/icons.gif) -860px 0; border:1px solid #FFF; margin-left:1px;}
53
- .mceOldBoxModel a.browse span {width:22px; height:20px;}
54
- a.browse:hover span {border:1px solid #0A246A; background-color:#B2BBD0;}
55
- a.browse span.disabled {border:1px solid white; -moz-opacity:0.3; opacity:0.3; filter:progid:DXImageTransform.Microsoft.Alpha(opacity=30);}
56
- a.browse:hover span.disabled {border:1px solid white; background-color:transparent;}
57
- a.pickcolor span {display:block; width:20px; height:16px; background:url(../../img/icons.gif) -840px 0; margin-left:2px;}
58
- .mceOldBoxModel a.pickcolor span {width:21px; height:17px;}
59
- a.pickcolor:hover span {background-color:#B2BBD0;}
60
- a.pickcolor, a.browse {text-decoration:none}
61
-
62
- /* Charmap */
63
- table.charmap {border:1px solid #AAA; text-align:center}
64
- td.charmap, #charmap a {width:18px; height:18px; color:#000; border:1px solid #AAA; text-align:center; font-size:12px; vertical-align:middle; line-height: 18px;}
65
- #charmap a {display:block; color:#000; text-decoration:none; border:0}
66
- #charmap a:hover {background:#CCC;color:#2B6FB6}
67
- #charmap #codeN {font-size:10px; font-family:Arial,Helvetica,sans-serif; text-align:center}
68
- #charmap #codeV {font-size:40px; height:80px; border:1px solid #AAA; text-align:center}
69
- #charmap #charmapView {background-color:#fff;}
70
-
71
- /* Source */
72
- .wordWrapCode {vertical-align:middle; border:1px none #000000; background:transparent;}
73
- .mceActionPanel {margin-top:5px;}
74
-
75
- /* Tabs classes */
76
- .tabs {width:100%; height:18px; line-height:normal; background:url(img/tabs.gif) repeat-x 0 -72px;}
77
- .tabs ul {margin:0; padding:0; list-style:none;}
78
- .tabs li {float:left; background:url(img/tabs.gif) no-repeat 0 0; margin:0 2px 0 0; padding:0 0 0 10px; line-height:17px; height:18px; display:block;}
79
- .tabs li.current {background:url(img/tabs.gif) no-repeat 0 -18px; margin-right:2px;}
80
- .tabs span {float:left; display:block; background:url(img/tabs.gif) no-repeat right -36px; padding:0px 10px 0 0;}
81
- .tabs .current span {background:url(img/tabs.gif) no-repeat right -54px;}
82
- .tabs a {text-decoration:none; font-family:Verdana, Arial; font-size:10px;}
83
- .tabs a:link, .tabs a:visited, .tabs a:hover {color:black;}
84
-
85
- /* Panels */
86
- .panel_wrapper div.panel {display:none;}
87
- .panel_wrapper div.current {display:block; width:100%; height:300px; overflow:visible;}
88
- .panel_wrapper {border:1px solid #919B9C; border-top:0px; padding:10px; padding-top:5px; clear:both; background:white;}
89
-
90
- /* Columns */
91
- .column {float:left;}
92
- .properties {width:100%;}
93
- .properties .column1 {}
94
- .properties .column2 {text-align:left;}
95
-
96
- /* Titles */
97
- h1, h2, h3, h4 {color:#2B6FB6; margin:0; padding:0; padding-top:5px;}
98
- h3 {font-size:14px;}
99
- .title {font-size:12px; font-weight:bold; color:#2B6FB6;}
100
-
101
- /* Dialog specific */
102
- #link .panel_wrapper, #link div.current {height:125px;}
103
- #image .panel_wrapper, #image div.current {height:200px;}
104
- #plugintable thead {font-weight:bold; background:#DDD;}
105
- #plugintable, #about #plugintable td {border:1px solid #919B9C;}
106
- #plugintable {width:96%; margin-top:10px;}
107
- #pluginscontainer {height:290px; overflow:auto;}
108
- #colorpicker #preview {float:right; width:50px; height:14px;line-height:1px; border:1px solid black; margin-left:5px;}
109
- #colorpicker #colors {float:left; border:1px solid gray; cursor:crosshair;}
110
- #colorpicker #light {border:1px solid gray; margin-left:5px; float:left;width:15px; height:150px; cursor:crosshair;}
111
- #colorpicker #light div {overflow:hidden;}
112
- #colorpicker #previewblock {float:right; padding-left:10px; height:20px;}
113
- #colorpicker .panel_wrapper div.current {height:175px;}
114
- #colorpicker #namedcolors {width:150px;}
115
- #colorpicker #namedcolors a {display:block; float:left; width:10px; height:10px; margin:1px 1px 0 0; overflow:hidden;}
116
- #colorpicker #colornamecontainer {margin-top:5px;}
117
- #colorpicker #picker_panel fieldset {margin:auto;width:325px;}
1
+ /* Generic */
2
+ body {
3
+ font-family:Verdana, Arial, Helvetica, sans-serif; font-size:11px;
4
+ background:#f1f1f1;
5
+ padding:0;
6
+ margin:8px 8px 0 8px;
7
+ }
8
+
9
+ html {background:#f1f1f1;}
10
+ td {font-family:Verdana, Arial, Helvetica, sans-serif; font-size:10px;}
11
+ textarea {resize:none;outline:none;}
12
+ a:link, a:visited {color:black;}
13
+ a:hover {color:#2B6FB6;}
14
+ .nowrap {white-space: nowrap}
15
+
16
+ /* Forms */
17
+ fieldset {margin:0; padding:4px; border:1px solid #dfdfdf; font-family:Verdana, Arial; font-size:10px;}
18
+ legend {color:#2B6FB6; font-weight:bold;}
19
+ label.msg {display:none;}
20
+ label.invalid {color:#EE0000; display:inline;}
21
+ input.invalid {border:1px solid #EE0000;}
22
+ input {background:#FFF; border:1px solid #dfdfdf;}
23
+ input, select, textarea {font-family:Verdana, Arial, Helvetica, sans-serif; font-size:10px;}
24
+ input, select, textarea {border:1px solid #dfdfdf;}
25
+ input.radio {border:1px none #000000; background:transparent; vertical-align:middle;}
26
+ input.checkbox {border:1px none #000000; background:transparent; vertical-align:middle;}
27
+ .input_noborder {border:0;}
28
+
29
+ /* Buttons */
30
+ #insert, #cancel, #apply, .mceActionPanel .button, input.mceButton, .updateButton {
31
+ border: 1px solid #bbb;
32
+ margin:0;
33
+ padding:0 0 1px;
34
+ font-weight:bold;
35
+ font-size: 11px;
36
+ width:94px;
37
+ height:24px;
38
+ background:url(img/fade-butt.png) 0 0;
39
+ color:#000;
40
+ cursor:pointer;
41
+ -moz-border-radius: 3px;
42
+ -khtml-border-radius: 3px;
43
+ -webkit-border-radius: 3px;
44
+ border-radius: 3px;
45
+ }
46
+ #insert:hover, #cancel:hover, input.mceButton:hover, .updateButton:hover,
47
+ #insert:focus, #cancel:focus, input.mceButton:focus, .updateButton:focus {
48
+ border: 1px solid #555;
49
+ }
50
+
51
+ /* Browse */
52
+ a.browse span {display:block; width:20px; height:18px; background:url(../../img/icons.gif) -860px 0; border:1px solid #FFF; margin-left:1px;}
53
+ .mceOldBoxModel a.browse span {width:22px; height:20px;}
54
+ a.browse:hover span {border:1px solid #0A246A; background-color:#B2BBD0;}
55
+ a.browse span.disabled {border:1px solid white; -moz-opacity:0.3; opacity:0.3; filter:progid:DXImageTransform.Microsoft.Alpha(opacity=30);}
56
+ a.browse:hover span.disabled {border:1px solid white; background-color:transparent;}
57
+ a.pickcolor span {display:block; width:20px; height:16px; background:url(../../img/icons.gif) -840px 0; margin-left:2px;}
58
+ .mceOldBoxModel a.pickcolor span {width:21px; height:17px;}
59
+ a.pickcolor:hover span {background-color:#B2BBD0;}
60
+ a.pickcolor, a.browse {text-decoration:none}
61
+
62
+ /* Charmap */
63
+ table.charmap {border:1px solid #AAA; text-align:center}
64
+ td.charmap, #charmap a {width:18px; height:18px; color:#000; border:1px solid #AAA; text-align:center; font-size:12px; vertical-align:middle; line-height: 18px;}
65
+ #charmap a {display:block; color:#000; text-decoration:none; border:0}
66
+ #charmap a:hover {background:#CCC;color:#2B6FB6}
67
+ #charmap #codeN {font-size:10px; font-family:Arial,Helvetica,sans-serif; text-align:center}
68
+ #charmap #codeV {font-size:40px; height:80px; border:1px solid #AAA; text-align:center}
69
+ #charmap #charmapView {background-color:#fff;}
70
+
71
+ /* Source */
72
+ .wordWrapCode {vertical-align:middle; border:1px none #000000; background:transparent;}
73
+ .mceActionPanel {margin-top:5px;}
74
+
75
+ /* Tabs classes */
76
+ .tabs {width:100%; height:18px; line-height:normal; background:url(img/tabs.gif) repeat-x 0 -72px;}
77
+ .tabs ul {margin:0; padding:0; list-style:none;}
78
+ .tabs li {float:left; background:url(img/tabs.gif) no-repeat 0 0; margin:0 2px 0 0; padding:0 0 0 10px; line-height:17px; height:18px; display:block;}
79
+ .tabs li.current {background:url(img/tabs.gif) no-repeat 0 -18px; margin-right:2px;}
80
+ .tabs span {float:left; display:block; background:url(img/tabs.gif) no-repeat right -36px; padding:0px 10px 0 0;}
81
+ .tabs .current span {background:url(img/tabs.gif) no-repeat right -54px;}
82
+ .tabs a {text-decoration:none; font-family:Verdana, Arial; font-size:10px;}
83
+ .tabs a:link, .tabs a:visited, .tabs a:hover {color:black;}
84
+
85
+ /* Panels */
86
+ .panel_wrapper div.panel {display:none;}
87
+ .panel_wrapper div.current {display:block; width:100%; height:300px; overflow:visible;}
88
+ .panel_wrapper {border:1px solid #919B9C; border-top:0px; padding:10px; padding-top:5px; clear:both; background:white;}
89
+
90
+ /* Columns */
91
+ .column {float:left;}
92
+ .properties {width:100%;}
93
+ .properties .column1 {}
94
+ .properties .column2 {text-align:left;}
95
+
96
+ /* Titles */
97
+ h1, h2, h3, h4 {color:#2B6FB6; margin:0; padding:0; padding-top:5px;}
98
+ h3 {font-size:14px;}
99
+ .title {font-size:12px; font-weight:bold; color:#2B6FB6;}
100
+
101
+ /* Dialog specific */
102
+ #link .panel_wrapper, #link div.current {height:125px;}
103
+ #image .panel_wrapper, #image div.current {height:200px;}
104
+ #plugintable thead {font-weight:bold; background:#DDD;}
105
+ #plugintable, #about #plugintable td {border:1px solid #919B9C;}
106
+ #plugintable {width:96%; margin-top:10px;}
107
+ #pluginscontainer {height:290px; overflow:auto;}
108
+ #colorpicker #preview {float:right; width:50px; height:14px;line-height:1px; border:1px solid black; margin-left:5px;}
109
+ #colorpicker #colors {float:left; border:1px solid gray; cursor:crosshair;}
110
+ #colorpicker #light {border:1px solid gray; margin-left:5px; float:left;width:15px; height:150px; cursor:crosshair;}
111
+ #colorpicker #light div {overflow:hidden;}
112
+ #colorpicker #previewblock {float:right; padding-left:10px; height:20px;}
113
+ #colorpicker .panel_wrapper div.current {height:175px;}
114
+ #colorpicker #namedcolors {width:150px;}
115
+ #colorpicker #namedcolors a {display:block; float:left; width:10px; height:10px; margin:1px 1px 0 0; overflow:hidden;}
116
+ #colorpicker #colornamecontainer {margin-top:5px;}
117
+ #colorpicker #picker_panel fieldset {margin:auto;width:325px;}
@@ -1,988 +1,988 @@
1
- /* Reset */
2
- .cirkuitSkin table, .cirkuitSkin tbody, .cirkuitSkin a, .cirkuitSkin img, .cirkuitSkin tr, .cirkuitSkin div, .cirkuitSkin td, .cirkuitSkin iframe, .cirkuitSkin span, .cirkuitSkin *, .cirkuitSkin .mceText {
3
- border: 0;
4
- margin: 0;
5
- padding: 0;
6
- background: transparent;
7
- white-space: nowrap;
8
- text-decoration: none;
9
- font-weight: normal;
10
- cursor: default;
11
- color: #000;
12
- vertical-align: baseline;
13
- width: auto;
14
- border-collapse: separate;
15
- text-align: left
16
- }
17
-
18
- .cirkuitSkin a:hover, .cirkuitSkin a:link, .cirkuitSkin a:visited, .cirkuitSkin a:active {
19
- text-decoration: none;
20
- font-weight: normal;
21
- cursor: default;
22
- color: #000
23
- }
24
-
25
- .cirkuitSkin table td {
26
- vertical-align: middle
27
- }
28
-
29
- /* Containers */
30
- .cirkuitSkin table {
31
- direction:ltr;
32
- }
33
- .cirkuitSkin iframe {
34
- display: block;
35
- background: #FFF;
36
- }
37
-
38
- .cirkuitSkin .mceToolbar {
39
- height: 26px
40
- }
41
-
42
- .cirkuitSkin .mceLeft {
43
- text-align: left
44
- }
45
-
46
- .cirkuitSkin .mceRight {
47
- text-align: right
48
- }
49
-
50
- /* External */
51
- .cirkuitSkin .mceExternalToolbar {
52
- position: absolute;
53
- border: 1px solid #CCC;
54
- border-bottom: 0;
55
- display: none;
56
- }
57
-
58
- .cirkuitSkin .mceExternalToolbar td.mceToolbar {
59
- padding-right: 13px;
60
- }
61
-
62
- .cirkuitSkin .mceExternalClose {
63
- position: absolute;
64
- top: 3px;
65
- right: 3px;
66
- width: 7px;
67
- height: 7px;
68
- background: url('img/icons.png') -820px 0
69
- }
70
-
71
- /* Layout */
72
- .cirkuitSkin table.mceLayout {
73
- border: 0;
74
- border-left: 1px solid #CCC;
75
- border-right: 1px solid #CCC
76
- }
77
-
78
- .cirkuitSkin table.mceLayout tr.mceFirst td {
79
- border-top: 1px solid #CCC
80
- }
81
-
82
- .cirkuitSkin table.mceLayout tr.mceLast td {
83
- border-bottom: 1px solid #CCC;
84
- background: url('img/toolbarbg.png') center repeat-x;
85
- }
86
-
87
- .cirkuitSkin table.mceToolbar, .cirkuitSkin tr.mceFirst .mceToolbar tr td, .cirkuitSkin tr.mceLast .mceToolbar tr td {
88
- border: 0;
89
- margin: 0;
90
- padding: 0;
91
- }
92
-
93
- .cirkuitSkin td.mceToolbar {
94
- padding-top: 1px;
95
- vertical-align: top;
96
- background-color: #DFDFDF;
97
- }
98
-
99
- .cirkuitSkin .mceIframeContainer {
100
- border-top: 1px solid #CCC;
101
- border-bottom: 1px solid #CCC;
102
- /*height: 100%; 5/22/2010 - Joe Rozzi - taken out comparing to default theme ui.css */
103
- }
104
-
105
- .cirkuitSkin .mceStatusbar {
106
- font-family: 'MS Sans Serif', sans-serif, Verdana, Arial;
107
- font-size: 9pt;
108
- line-height: 16px;
109
- overflow: visible;
110
- color: #666;
111
- display: block;
112
- height: 20px
113
- }
114
-
115
- .cirkuitSkin .mceStatusbar div {
116
- float: left;
117
- /*margin: 3px 0 0 4px;*/
118
- margin:2px;
119
- color: #666;
120
- }
121
-
122
- .cirkuitSkin .mceStatusbar a.mceResize {
123
- display: block;
124
- float: right;
125
- background: url('img/icons.png') -801px -2px;
126
- width: 20px;
127
- height: 20px;
128
- cursor: se-resize;
129
- outline:0;
130
- }
131
-
132
- .cirkuitSkin .mceStatusbar a:hover {
133
- text-decoration: underline
134
- }
135
-
136
- .cirkuitSkin table.mceToolbar {
137
- margin-left: 3px
138
- }
139
-
140
- .cirkuitSkin span.mceIcon, .cirkuitSkin img.mceIcon {
141
- display: block;
142
- width: 20px;
143
- height: 20px
144
- }
145
-
146
- .cirkuitSkin .mceIcon {
147
- background: url('img/icons.png') no-repeat 20px 20px
148
- }
149
-
150
- .cirkuitSkin td.mceCenter {
151
- text-align: center;
152
- }
153
-
154
- .cirkuitSkin td.mceCenter table {
155
- margin: 0 auto;
156
- text-align: left;
157
- }
158
-
159
- .cirkuitSkin td.mceRight table {
160
- margin: 0 0 0 auto;
161
- }
162
-
163
- /* Button */
164
- .cirkuitSkin .mceButton {
165
- -moz-border-radius: 3px;
166
- -webkit-border-radius: 3px;
167
- -khtml-border-radius: 3px;
168
- border-radius: 3px;
169
- background-image: url("img/butt2.png");
170
- background-position: left top;
171
- background-repeat: repeat-x;
172
- cursor: default;
173
- display: block;
174
- height: 20px;
175
- margin: 1px;
176
- padding: 1px 2px;
177
- width: 20px;
178
- background-color: #E9E8E8;
179
- border-color: #B2B2B2;
180
- }
181
-
182
- .cirkuitSkin a.mceButtonEnabled:hover {
183
- background-position: 0 -10px;
184
- border-color: #777;
185
- }
186
-
187
- .cirkuitSkin a.mceButtonActive, .cirkuitSkin a.mceButtonSelected {
188
- background-image: inherit;
189
- border-color: #333;
190
- background: #bcd0f5 !important;
191
- }
192
-
193
- .cirkuitSkin .mceButtonDisabled .mceIcon {
194
- opacity: 0.3;
195
- -ms-filter: 'alpha(opacity=30)';
196
- filter: alpha(opacity = 30);
197
- }
198
-
199
- .cirkuitSkin .mceButtonLabeled {
200
- width: auto;
201
- }
202
-
203
- .cirkuitSkin .mceButtonLabeled span.mceIcon {
204
- float: left;
205
- }
206
-
207
- .cirkuitSkin span.mceButtonLabel {
208
- display: block;
209
- font-size: 10px;
210
- padding: 4px 6px 0 22px;
211
- font-family: Tahoma, Verdana, Arial, Helvetica;
212
- }
213
-
214
- .cirkuitSkin .mceButtonDisabled .mceButtonLabel {
215
- color: #888;
216
- }
217
-
218
- /* Separator */
219
- .cirkuitSkin .mceSeparator {
220
- background: none repeat scroll 0 0 transparent;
221
- display: block;
222
- height: 24px;
223
- margin: 0 2px;
224
- overflow: hidden;
225
- width: 1px;
226
- }
227
-
228
- /* ListBox */
229
- .cirkuitSkin .mceListBox {
230
- direction: ltr;
231
- margin: 1px;
232
- }
233
-
234
- .cirkuitSkin .mceListBox, .cirkuitSkin .mceListBox a {
235
- display: block
236
- }
237
-
238
- .cirkuitSkin .mceListBox .mceText {
239
- padding: 1px 2px 1px 5px;
240
- text-align: left;
241
- text-decoration: none !important;
242
- width: 70px;
243
- background-image: url(img/butt2.png);
244
- background-position: left top;
245
- background-repeat: repeat-x;
246
- font-family: Tahoma, Verdana, Arial, Helvetica;
247
- font-size: 11px;
248
- height: 20px;
249
- line-height: 20px;
250
- overflow: hidden;
251
- }
252
-
253
- .cirkuitSkin .mceListBox .mceText, .cirkuitSkin .mceListBox .mceOpen {
254
- background-color: #D5D5D5;
255
- border-color: #B2B2B2;
256
- }
257
-
258
- .cirkuitSkin table.mceListBoxEnabled:hover .mceOpen, .cirkuitSkin .mceListBoxHover .mceOpen, .cirkuitSkin .mceListBoxSelected .mceOpen, .cirkuitSkin .mceListBoxSelected .mceText {
259
- border-color: #777 !important;
260
- background-color: #d5d5d5 !important;
261
- }
262
-
263
- .cirkuitSkin table.mceListBoxEnabled:hover .mceText, .cirkuitSkin .mceListBoxHover .mceText {
264
- border-color: #777 !important;
265
- }
266
-
267
- .cirkuitSkin table.mceListBoxEnabled:hover .mceText, .cirkuitSkin .mceListBoxHover .mceText, .cirkuitSkin .mceListBoxSelected .mceText, .cirkuitSkin table.mceListBoxEnabled:hover .mceOpen, .cirkuitSkin .mceListBoxHover .mceOpen, .cirkuitSkin .mceListBoxSelected .mceOpen {
268
- background-image: none;
269
- }
270
-
271
- .cirkuitSkin .mceListBoxDisabled a.mceText {
272
- color: gray;
273
- background-color: transparent;
274
- }
275
-
276
- .cirkuitSkin .mceListBoxMenu {
277
- overflow: auto;
278
- overflow-x: hidden
279
- }
280
-
281
- .cirkuitSkin .mceOldBoxModel .mceListBox .mceText {
282
- height: 22px
283
- }
284
-
285
- .cirkuitSkin .mceOldBoxModel .mceListBox .mceOpen {
286
- width: 11px;
287
- height: 22px;
288
- }
289
-
290
- .cirkuitSkin select.mceNativeListBox {
291
- font: 11px 'Lucida Grande', Helvetica, Arial, sans-serif;
292
- background: #F0F0EE;
293
- border: 1px solid gray;
294
- margin-right: 2px;
295
- }
296
-
297
- .cirkuitSkin .mceListBox .mceOpen {
298
- width: 14px;
299
- height: 20px;
300
- border-collapse: separate;
301
- background-image: url(img/butt2.png);
302
- background-position: left top;
303
- background-repeat: repeat-x;
304
- padding: 1px;
305
- border-left: 0 none !important;
306
- }
307
-
308
- .cirkuitSkin .mceListBox .mceOpen span {
309
- display: block;
310
- width: 14px;
311
- height: 20px;
312
- background-image: url(img/down_arrow.gif);
313
- background-position: 2px 1px;
314
- background-repeat: no-repeat;
315
- }
316
-
317
- /* SplitButton */
318
- .cirkuitSkin .mceSplitButton {
319
- width: 32px;
320
- height: 20px;
321
- direction: ltr
322
- }
323
-
324
- .cirkuitSkin .mceSplitButton a, .cirkuitSkin .mceSplitButton span {
325
- height: 20px;
326
- }
327
-
328
- .cirkuitSkin .mceSplitButton a {
329
- display: block;
330
- }
331
-
332
- .cirkuitSkin .mceSplitButton a.mceAction {
333
- height: 20px;
334
- width: 20px;
335
- padding: 1px 2px;
336
- display: block;
337
- }
338
-
339
- .cirkuitSkin .mceSplitButton span.mceAction {
340
- width: 20px;
341
- background: url('img/icons.png') 20px 20px;
342
- display: block;
343
- }
344
-
345
- .cirkuitSkin .mceSplitButton a.mceOpen {
346
- width: 10px;
347
- height: 20px;
348
- background-image: url(img/down_arrow.gif);
349
- background-position: 1px 2px;
350
- background-repeat: no-repeat;
351
- padding: 1px;
352
- border-left: 0 none !important;
353
- }
354
-
355
- .cirkuitSkin .mceSplitButtonDisabled .mceAction, .cirkuitSkin .mceSplitButtonDisabled span.mceOpen {
356
- opacity: 0.3;
357
- filter: alpha(opacity = 30);
358
- }
359
-
360
- .cirkuitSkin .mceSplitButtonActive a.mceAction {
361
- border: 1px solid #0A246A;
362
- background-color: #C2CBE0;
363
- }
364
-
365
- .cirkuitSkin table.mceSplitButton td {
366
- background-image: url(img/butt2.png);
367
- background-position: left top;
368
- background-repeat: repeat-x;
369
- }
370
-
371
- .cirkuitSkin .mceSplitButton a.mceAction, .cirkuitSkin .mceSplitButton a.mceOpen {
372
- border-color: #B2B2B2;
373
- }
374
-
375
- .cirkuitSkin .mceListBox a.mceText, .cirkuitSkin .mceSplitButton a.mceAction {
376
- -moz-border-radius-bottomleft: 3px;
377
- -webkit-border-bottom-left-radius: 3px;
378
- -khtml-border-bottom-left-radius: 3px;
379
- border-bottom-left-radius: 3px;
380
- -moz-border-radius-topleft: 3px;
381
- -webkit-border-top-left-radius: 3px;
382
- -khtml-border-top-left-radius: 3px;
383
- border-top-left-radius: 3px;
384
- }
385
-
386
- .cirkuitSkin .mceSplitButton a.mceOpen, .cirkuitSkin .mceListBox a.mceOpen {
387
- -moz-border-radius-bottomright: 3px;
388
- -webkit-border-bottom-right-radius: 3px;
389
- -khtml-border-bottom-right-radius: 3px;
390
- border-bottom-right-radius: 3px;
391
- -moz-border-radius-topright: 3px;
392
- -webkit-border-top-right-radius: 3px;
393
- -khtml-border-top-right-radius: 3px;
394
- border-top-right-radius: 3px;
395
- }
396
-
397
- .cirkuitSkin .mceSplitButton a.mceOpen:hover, .cirkuitSkin .mceSplitButtonSelected a.mceOpen, .cirkuitSkin table.mceSplitButtonEnabled:hover a.mceAction, .cirkuitSkin .mceSplitButton a.mceAction:hover {
398
- background-color: #d5d5d5;
399
- border-color: #777 !important;
400
- }
401
-
402
- /* ColorSplitButton */
403
- .cirkuitSkin div.mceColorSplitMenu table {
404
- background: #FFF;
405
- border: 1px solid gray
406
- }
407
-
408
- .cirkuitSkin .mceColorSplitMenu td {
409
- padding: 2px
410
- }
411
-
412
- .cirkuitSkin .mceColorSplitMenu a {
413
- display: block;
414
- width: 9px;
415
- height: 9px;
416
- overflow: hidden;
417
- border: 1px solid #808080
418
- }
419
-
420
- .cirkuitSkin .mceColorSplitMenu td.mceMoreColors {
421
- padding: 1px 3px 1px 1px
422
- }
423
-
424
- .cirkuitSkin .mceColorSplitMenu a.mceMoreColors {
425
- width: 100%;
426
- height: auto;
427
- text-align: center;
428
- font-family: Tahoma, Verdana, Arial, Helvetica;
429
- font-size: 11px;
430
- line-height: 20px;
431
- border: 1px solid #FFF
432
- }
433
-
434
- .cirkuitSkin .mceColorSplitMenu a.mceMoreColors:hover {
435
- border: 1px solid #0A246A;
436
- background-color: #B6BDD2
437
- }
438
-
439
- .cirkuitSkin a.mceMoreColors:hover {
440
- border: 1px solid #0A246A
441
- }
442
-
443
- .cirkuitSkin .mceColorPreview {
444
- margin-left: 2px;
445
- width: 16px;
446
- height: 3px;
447
- overflow: hidden;
448
- background: #9a9b9a
449
- }
450
-
451
- .cirkuitSkin .mce_forecolor span.mceAction, .cirkuitSkin .mce_backcolor span.mceAction {
452
- overflow: hidden;
453
- height: 16px
454
- }
455
-
456
- /* Menu */
457
- .cirkuitSkin .mceMenu {
458
- position: absolute;
459
- left: 0;
460
- top: 0;
461
- z-index: 1000;
462
- border: 1px solid #D4D0C8
463
- }
464
-
465
- .cirkuitSkin .mceNoIcons span.mceIcon {
466
- width: 0;
467
- }
468
-
469
- .cirkuitSkin .mceNoIcons a .mceText {
470
- padding-left: 10px
471
- }
472
-
473
- .cirkuitSkin .mceMenu table {
474
- background: #FFF
475
- }
476
-
477
- .cirkuitSkin .mceMenu a, .cirkuitSkin .mceMenu span, .cirkuitSkin .mceMenu {
478
- display: block
479
- }
480
-
481
- .cirkuitSkin .mceMenu td {
482
- height: 20px
483
- }
484
-
485
- .cirkuitSkin .mceMenu a {
486
- position: relative;
487
- padding: 3px 0 4px 0
488
- }
489
-
490
- .cirkuitSkin .mceMenu .mceText {
491
- position: relative;
492
- display: block;
493
- font-family: 'Lucida Grande', Helvetica, Arial, sans-serif;
494
- color: #000;
495
- cursor: default;
496
- margin: 0;
497
- padding: 0 25px 0 25px;
498
- display: block
499
- }
500
-
501
- .cirkuitSkin .mceMenu span.mceText, .cirkuitSkin .mceMenu .mcePreview {
502
- font-size: 11px
503
- }
504
-
505
- .cirkuitSkin .mceMenu pre.mceText {
506
- font-family: Monospace
507
- }
508
-
509
- .cirkuitSkin .mceMenu .mceIcon {
510
- position: absolute;
511
- top: 0;
512
- left: 0;
513
- width: 22px;
514
- }
515
-
516
- .cirkuitSkin .mceMenu .mceMenuItemEnabled a:hover, .cirkuitSkin .mceMenu .mceMenuItemActive {
517
- background-color: #dbecf3
518
- }
519
-
520
- .cirkuitSkin td.mceMenuItemSeparator {
521
- background: #DDD;
522
- height: 1px
523
- }
524
-
525
- .cirkuitSkin .mceMenuItemTitle a {
526
- border: 0;
527
- background: #EEE;
528
- border-bottom: 1px solid #DDD
529
- }
530
-
531
- .cirkuitSkin .mceMenuItemTitle span.mceText {
532
- color: #000;
533
- font-weight: bold;
534
- padding-left: 4px
535
- }
536
-
537
- .cirkuitSkin .mceMenuItemDisabled .mceText {
538
- color: #888
539
- }
540
-
541
- .cirkuitSkin .mceMenuItemSelected .mceIcon {
542
- background: url('img/menu-check.png')
543
- }
544
-
545
- .cirkuitSkin .mceNoIcons .mceMenuItemSelected a {
546
- background: url('img/menu-arrow.png') no-repeat -6px center
547
- }
548
-
549
- .cirkuitSkin .mceMenu span.mceMenuLine {
550
- display: none
551
- }
552
-
553
- .cirkuitSkin .mceMenuItemSub a {
554
- background: url('img/menu-arrow.png') no-repeat top right;
555
- }
556
-
557
- /* Progress,Resize */
558
- .cirkuitSkin .mceBlocker {
559
- position: absolute;
560
- left: 0;
561
- top: 0;
562
- z-index: 1000;
563
- opacity: 0.5;
564
- -ms-filter: 'alpha(opacity=50)';
565
- filter: alpha(opacity = 50);
566
- background: #FFF
567
- }
568
-
569
- .cirkuitSkin .mceProgress {
570
- position: absolute;
571
- left: 0;
572
- top: 0;
573
- z-index: 1001;
574
- background: url('img/progress.gif') no-repeat;
575
- width: 32px;
576
- height: 32px;
577
- margin: -16px 0 0 -16px
578
- }
579
-
580
- .cirkuitSkin .mcePlaceHolder {
581
- border: 1px dotted gray
582
- }
583
-
584
- /* Formats */
585
- .cirkuitSkin .mce_formatPreview a {
586
- font-size: 10px
587
- }
588
-
589
- .cirkuitSkin .mce_p span.mceText {
590
- }
591
-
592
- .cirkuitSkin .mce_address span.mceText {
593
- font-style: italic
594
- }
595
-
596
- .cirkuitSkin .mce_pre span.mceText {
597
- font-family: monospace
598
- }
599
-
600
- .cirkuitSkin .mce_h1 span.mceText {
601
- font-weight: bolder;
602
- font-size: 2em
603
- }
604
-
605
- .cirkuitSkin .mce_h2 span.mceText {
606
- font-weight: bolder;
607
- font-size: 1.5em
608
- }
609
-
610
- .cirkuitSkin .mce_h3 span.mceText {
611
- font-weight: bolder;
612
- font-size: 1.17em
613
- }
614
-
615
- .cirkuitSkin .mce_h4 span.mceText {
616
- font-weight: bolder;
617
- font-size: 1em
618
- }
619
-
620
- .cirkuitSkin .mce_h5 span.mceText {
621
- font-weight: bolder;
622
- font-size: .83em
623
- }
624
-
625
- .cirkuitSkin .mce_h6 span.mceText {
626
- font-weight: bolder;
627
- font-size: .75em
628
- }
629
-
630
- /* border */
631
- .cirkuitSkin .mceExternalToolbar, .cirkuitSkin .mceButton, .cirkuitSkin a.mceButtonEnabled:hover, .cirkuitSkin a.mceButtonActive, .cirkuitSkin a.mceButtonSelected, .cirkuitSkin .mceListBox .mceText, .cirkuitSkin .mceListBox .mceOpen, .cirkuitSkin table.mceListBoxEnabled:hover .mceText, .cirkuitSkin .mceListBoxHover .mceText, .cirkuitSkin .mceListBoxSelected .mceText, .cirkuitSkin table.mceListBoxEnabled:hover .mceOpen, .cirkuitSkin .mceListBoxHover .mceOpen, .cirkuitSkin .mceListBoxSelected .mceOpen, .cirkuitSkin select.mceListBox, .cirkuitSkin .mceSplitButton a.mceAction, .cirkuitSkin .mceSplitButton a.mceOpen, .cirkuitSkin .mceSplitButton a.mceOpen:hover, .cirkuitSkin .mceSplitButtonSelected a.mceOpen, .cirkuitSkin table.mceSplitButtonEnabled:hover a.mceAction, .cirkuitSkin .mceSplitButton a.mceAction:hover, .cirkuitSkin div.mceColorSplitMenu table, .cirkuitSkin .mceColorSplitMenu a, .cirkuitSkin .mceColorSplitMenu a.mceMoreColors, .cirkuitSkin .mceColorSplitMenu a.mceMoreColors:hover, .cirkuitSkin a.mceMoreColors:hover, .cirkuitSkin .mceMenu {
632
- border-style: solid;
633
- border-width: 1px;
634
- }
635
-
636
- /* Theme */
637
- .cirkuitSkin span.mce_bold {
638
- background-position: 0 0 !important;
639
- }
640
-
641
- .cirkuitSkin span.mce_italic {
642
- background-position: -60px 0 !important;
643
- }
644
-
645
- .cirkuitSkin span.mce_underline {
646
- background-position: -140px 0 !important;
647
- }
648
-
649
- .cirkuitSkin span.mce_strikethrough {
650
- background-position: -120px 0 !important;
651
- }
652
-
653
- .cirkuitSkin span.mce_undo {
654
- background-position: -160px 0 !important;
655
- }
656
-
657
- .cirkuitSkin span.mce_redo {
658
- background-position: -100px 0 !important;
659
- }
660
-
661
- .cirkuitSkin span.mce_cleanup {
662
- background-position: -40px 0 !important;
663
- }
664
-
665
- .cirkuitSkin span.mce_bullist {
666
- background-position: -20px 0 !important;
667
- }
668
-
669
- .cirkuitSkin span.mce_numlist {
670
- background-position: -80px 0 !important;
671
- }
672
-
673
- .cirkuitSkin span.mce_justifyleft {
674
- background-position: -460px 0 !important;
675
- }
676
-
677
- .cirkuitSkin span.mce_justifyright {
678
- background-position: -480px 0 !important;
679
- }
680
-
681
- .cirkuitSkin span.mce_justifycenter {
682
- background-position: -420px 0 !important;
683
- }
684
-
685
- .cirkuitSkin span.mce_justifyfull {
686
- background-position: -440px 0 !important;
687
- }
688
-
689
- .cirkuitSkin span.mce_anchor {
690
- background-position: -200px 0 !important;
691
- }
692
-
693
- .cirkuitSkin span.mce_indent {
694
- background-position: -400px 0 !important;
695
- }
696
-
697
- .cirkuitSkin span.mce_outdent {
698
- background-position: -540px 0 !important;
699
- }
700
-
701
- .cirkuitSkin span.mce_link {
702
- background-position: -500px 0 !important;
703
- }
704
-
705
- .cirkuitSkin span.mce_unlink {
706
- background-position: -640px 0 !important;
707
- }
708
-
709
- .cirkuitSkin span.mce_sub {
710
- background-position: -600px 0 !important;
711
- }
712
-
713
- .cirkuitSkin span.mce_sup {
714
- background-position: -620px 0 !important;
715
- }
716
-
717
- .cirkuitSkin span.mce_removeformat {
718
- background-position: -580px 0 !important;
719
- }
720
-
721
- .cirkuitSkin span.mce_newdocument {
722
- background-position: -520px 0 !important;
723
- }
724
-
725
- .cirkuitSkin span.mce_image {
726
- background-position: -380px 0 !important;
727
- }
728
-
729
- .cirkuitSkin span.mce_help {
730
- background-position: -340px 0 !important;
731
- }
732
-
733
- .cirkuitSkin span.mce_code {
734
- background-position: -260px 0 !important;
735
- }
736
-
737
- .cirkuitSkin span.mce_hr {
738
- background-position: -360px 0 !important;
739
- }
740
-
741
- .cirkuitSkin span.mce_visualaid {
742
- background-position: -660px 0 !important;
743
- }
744
-
745
- .cirkuitSkin span.mce_charmap {
746
- background-position: -240px 0 !important;
747
- }
748
-
749
- .cirkuitSkin span.mce_paste {
750
- background-position: -560px 0 !important;
751
- }
752
-
753
- .cirkuitSkin span.mce_copy {
754
- background-position: -700px 0 !important;
755
- }
756
-
757
- .cirkuitSkin span.mce_cut {
758
- background-position: -680px 0 !important;
759
- }
760
-
761
- .cirkuitSkin span.mce_blockquote {
762
- background-position: -220px 0 !important;
763
- }
764
-
765
- .cirkuitSkin .mce_forecolor span.mceAction {
766
- background-position: -720px 0 !important;
767
- }
768
-
769
- .cirkuitSkin .mce_backcolor span.mceAction {
770
- background-position: -760px 0 !important;
771
- }
772
-
773
- .cirkuitSkin span.mce_forecolorpicker {
774
- background-position: -720px 0 !important;
775
- }
776
-
777
- .cirkuitSkin span.mce_backcolorpicker {
778
- background-position: -760px 0 !important;
779
- }
780
-
781
- /* Plugins */
782
- .cirkuitSkin span.mce_advhr {
783
- background-position: -0px -20px !important;
784
- }
785
-
786
- .cirkuitSkin span.mce_ltr {
787
- background-position: -20px -20px !important;
788
- }
789
-
790
- .cirkuitSkin span.mce_rtl {
791
- background-position: -40px -20px !important;
792
- }
793
-
794
- .cirkuitSkin span.mce_emotions {
795
- background-position: -60px -20px !important;
796
- }
797
-
798
- .cirkuitSkin span.mce_fullpage {
799
- background-position: -80px -20px !important;
800
- }
801
-
802
- .cirkuitSkin span.mce_fullscreen {
803
- background-position: -100px -20px !important;
804
- }
805
-
806
- .cirkuitSkin span.mce_iespell {
807
- background-position: -120px -20px !important;
808
- }
809
-
810
- .cirkuitSkin span.mce_insertdate {
811
- background-position: -140px -20px !important;
812
- }
813
-
814
- .cirkuitSkin span.mce_inserttime {
815
- background-position: -160px -20px !important;
816
- }
817
-
818
- .cirkuitSkin span.mce_absolute {
819
- background-position: -180px -20px !important;
820
- }
821
-
822
- .cirkuitSkin span.mce_backward {
823
- background-position: -200px -20px !important;
824
- }
825
-
826
- .cirkuitSkin span.mce_forward {
827
- background-position: -220px -20px !important;
828
- }
829
-
830
- .cirkuitSkin span.mce_insert_layer {
831
- background-position: -240px -20px !important;
832
- }
833
-
834
- .cirkuitSkin span.mce_insertlayer {
835
- background-position: -260px -20px !important;
836
- }
837
-
838
- .cirkuitSkin span.mce_movebackward {
839
- background-position: -280px -20px !important;
840
- }
841
-
842
- .cirkuitSkin span.mce_moveforward {
843
- background-position: -300px -20px !important;
844
- }
845
-
846
- .cirkuitSkin span.mce_media {
847
- background-position: -320px -20px !important;
848
- }
849
-
850
- .cirkuitSkin span.mce_nonbreaking {
851
- background-position: -340px -20px !important;
852
- }
853
-
854
- .cirkuitSkin span.mce_pastetext {
855
- background-position: -360px -20px !important;
856
- }
857
-
858
- .cirkuitSkin span.mce_pasteword {
859
- background-position: -380px -20px !important;
860
- }
861
-
862
- .cirkuitSkin span.mce_selectall {
863
- background-position: -400px -20px !important;
864
- }
865
-
866
- .cirkuitSkin span.mce_preview {
867
- background-position: -420px -20px !important;
868
- }
869
-
870
- .cirkuitSkin span.mce_print {
871
- background-position: -440px -20px !important;
872
- }
873
-
874
- .cirkuitSkin span.mce_cancel {
875
- background-position: -460px -20px !important;
876
- }
877
-
878
- .cirkuitSkin span.mce_save {
879
- background-position: -480px -20px !important;
880
- }
881
-
882
- .cirkuitSkin span.mce_replace {
883
- background-position: -500px -20px !important;
884
- }
885
-
886
- .cirkuitSkin span.mce_search {
887
- background-position: -520px -20px !important;
888
- }
889
-
890
- .cirkuitSkin span.mce_styleprops {
891
- background-position: -560px -20px !important;
892
- }
893
-
894
- .cirkuitSkin span.mce_table {
895
- background-position: -580px -20px !important;
896
- }
897
-
898
- .cirkuitSkin span.mce_cell_props {
899
- background-position: -600px -20px !important;
900
- }
901
-
902
- .cirkuitSkin span.mce_delete_table {
903
- background-position: -620px -20px !important;
904
- }
905
-
906
- .cirkuitSkin span.mce_delete_col {
907
- background-position: -640px -20px !important;
908
- }
909
-
910
- .cirkuitSkin span.mce_delete_row {
911
- background-position: -660px -20px !important;
912
- }
913
-
914
- .cirkuitSkin span.mce_col_after {
915
- background-position: -680px -20px !important;
916
- }
917
-
918
- .cirkuitSkin span.mce_col_before {
919
- background-position: -700px -20px !important;
920
- }
921
-
922
- .cirkuitSkin span.mce_row_after {
923
- background-position: -720px -20px !important;
924
- }
925
-
926
- .cirkuitSkin span.mce_row_before {
927
- background-position: -740px -20px !important;
928
- }
929
-
930
- .cirkuitSkin span.mce_merge_cells {
931
- background-position: -760px -20px !important;
932
- }
933
-
934
- .cirkuitSkin span.mce_table_props {
935
- background-position: -980px -20px !important;
936
- }
937
-
938
- .cirkuitSkin span.mce_row_props {
939
- background-position: -780px -20px !important;
940
- }
941
-
942
- .cirkuitSkin span.mce_split_cells {
943
- background-position: -800px -20px !important;
944
- }
945
-
946
- .cirkuitSkin span.mce_template {
947
- background-position: -820px -20px !important;
948
- }
949
-
950
- .cirkuitSkin span.mce_visualchars {
951
- background-position: -840px -20px !important;
952
- }
953
-
954
- .cirkuitSkin span.mce_abbr {
955
- background-position: -860px -20px !important;
956
- }
957
-
958
- .cirkuitSkin span.mce_acronym {
959
- background-position: -880px -20px !important;
960
- }
961
-
962
- .cirkuitSkin span.mce_attribs {
963
- background-position: -900px -20px !important;
964
- }
965
-
966
- .cirkuitSkin span.mce_cite {
967
- background-position: -920px -20px !important;
968
- }
969
-
970
- .cirkuitSkin span.mce_del {
971
- background-position: -940px -20px !important;
972
- }
973
-
974
- .cirkuitSkin span.mce_ins {
975
- background-position: -960px -20px !important;
976
- }
977
-
978
- .cirkuitSkin span.mce_pagebreak {
979
- background-position: 0 -40px !important;
980
- }
981
-
982
- .cirkuitSkin .mce_spellchecker span.mceAction {
983
- background-position: -540px -20px !important;
984
- }
985
-
986
- .cirkuitSkin span.mce_restoredraft {
987
- background-position: -20px -40px !important;
988
- }
1
+ /* Reset */
2
+ .cirkuitSkin table, .cirkuitSkin tbody, .cirkuitSkin a, .cirkuitSkin img, .cirkuitSkin tr, .cirkuitSkin div, .cirkuitSkin td, .cirkuitSkin iframe, .cirkuitSkin span, .cirkuitSkin *, .cirkuitSkin .mceText {
3
+ border: 0;
4
+ margin: 0;
5
+ padding: 0;
6
+ background: transparent;
7
+ white-space: nowrap;
8
+ text-decoration: none;
9
+ font-weight: normal;
10
+ cursor: default;
11
+ color: #000;
12
+ vertical-align: baseline;
13
+ width: auto;
14
+ border-collapse: separate;
15
+ text-align: left
16
+ }
17
+
18
+ .cirkuitSkin a:hover, .cirkuitSkin a:link, .cirkuitSkin a:visited, .cirkuitSkin a:active {
19
+ text-decoration: none;
20
+ font-weight: normal;
21
+ cursor: default;
22
+ color: #000
23
+ }
24
+
25
+ .cirkuitSkin table td {
26
+ vertical-align: middle
27
+ }
28
+
29
+ /* Containers */
30
+ .cirkuitSkin table {
31
+ direction:ltr;
32
+ }
33
+ .cirkuitSkin iframe {
34
+ display: block;
35
+ background: #FFF;
36
+ }
37
+
38
+ .cirkuitSkin .mceToolbar {
39
+ height: 26px
40
+ }
41
+
42
+ .cirkuitSkin .mceLeft {
43
+ text-align: left
44
+ }
45
+
46
+ .cirkuitSkin .mceRight {
47
+ text-align: right
48
+ }
49
+
50
+ /* External */
51
+ .cirkuitSkin .mceExternalToolbar {
52
+ position: absolute;
53
+ border: 1px solid #CCC;
54
+ border-bottom: 0;
55
+ display: none;
56
+ }
57
+
58
+ .cirkuitSkin .mceExternalToolbar td.mceToolbar {
59
+ padding-right: 13px;
60
+ }
61
+
62
+ .cirkuitSkin .mceExternalClose {
63
+ position: absolute;
64
+ top: 3px;
65
+ right: 3px;
66
+ width: 7px;
67
+ height: 7px;
68
+ background: url('img/icons.png') -820px 0
69
+ }
70
+
71
+ /* Layout */
72
+ .cirkuitSkin table.mceLayout {
73
+ border: 0;
74
+ border-left: 1px solid #CCC;
75
+ border-right: 1px solid #CCC
76
+ }
77
+
78
+ .cirkuitSkin table.mceLayout tr.mceFirst td {
79
+ border-top: 1px solid #CCC
80
+ }
81
+
82
+ .cirkuitSkin table.mceLayout tr.mceLast td {
83
+ border-bottom: 1px solid #CCC;
84
+ background: url('img/toolbarbg.png') center repeat-x;
85
+ }
86
+
87
+ .cirkuitSkin table.mceToolbar, .cirkuitSkin tr.mceFirst .mceToolbar tr td, .cirkuitSkin tr.mceLast .mceToolbar tr td {
88
+ border: 0;
89
+ margin: 0;
90
+ padding: 0;
91
+ }
92
+
93
+ .cirkuitSkin td.mceToolbar {
94
+ padding-top: 1px;
95
+ vertical-align: top;
96
+ background-color: #DFDFDF;
97
+ }
98
+
99
+ .cirkuitSkin .mceIframeContainer {
100
+ border-top: 1px solid #CCC;
101
+ border-bottom: 1px solid #CCC;
102
+ /*height: 100%; 5/22/2010 - Joe Rozzi - taken out comparing to default theme ui.css */
103
+ }
104
+
105
+ .cirkuitSkin .mceStatusbar {
106
+ font-family: 'MS Sans Serif', sans-serif, Verdana, Arial;
107
+ font-size: 9pt;
108
+ line-height: 16px;
109
+ overflow: visible;
110
+ color: #666;
111
+ display: block;
112
+ height: 20px
113
+ }
114
+
115
+ .cirkuitSkin .mceStatusbar div {
116
+ float: left;
117
+ /*margin: 3px 0 0 4px;*/
118
+ margin:2px;
119
+ color: #666;
120
+ }
121
+
122
+ .cirkuitSkin .mceStatusbar a.mceResize {
123
+ display: block;
124
+ float: right;
125
+ background: url('img/icons.png') -801px -2px;
126
+ width: 20px;
127
+ height: 20px;
128
+ cursor: se-resize;
129
+ outline:0;
130
+ }
131
+
132
+ .cirkuitSkin .mceStatusbar a:hover {
133
+ text-decoration: underline
134
+ }
135
+
136
+ .cirkuitSkin table.mceToolbar {
137
+ margin-left: 3px
138
+ }
139
+
140
+ .cirkuitSkin span.mceIcon, .cirkuitSkin img.mceIcon {
141
+ display: block;
142
+ width: 20px;
143
+ height: 20px
144
+ }
145
+
146
+ .cirkuitSkin .mceIcon {
147
+ background: url('img/icons.png') no-repeat 20px 20px
148
+ }
149
+
150
+ .cirkuitSkin td.mceCenter {
151
+ text-align: center;
152
+ }
153
+
154
+ .cirkuitSkin td.mceCenter table {
155
+ margin: 0 auto;
156
+ text-align: left;
157
+ }
158
+
159
+ .cirkuitSkin td.mceRight table {
160
+ margin: 0 0 0 auto;
161
+ }
162
+
163
+ /* Button */
164
+ .cirkuitSkin .mceButton {
165
+ -moz-border-radius: 3px;
166
+ -webkit-border-radius: 3px;
167
+ -khtml-border-radius: 3px;
168
+ border-radius: 3px;
169
+ background-image: url("img/butt2.png");
170
+ background-position: left top;
171
+ background-repeat: repeat-x;
172
+ cursor: default;
173
+ display: block;
174
+ height: 20px;
175
+ margin: 1px;
176
+ padding: 1px 2px;
177
+ width: 20px;
178
+ background-color: #E9E8E8;
179
+ border-color: #B2B2B2;
180
+ }
181
+
182
+ .cirkuitSkin a.mceButtonEnabled:hover {
183
+ background-position: 0 -10px;
184
+ border-color: #777;
185
+ }
186
+
187
+ .cirkuitSkin a.mceButtonActive, .cirkuitSkin a.mceButtonSelected {
188
+ background-image: inherit;
189
+ border-color: #333;
190
+ background: #bcd0f5 !important;
191
+ }
192
+
193
+ .cirkuitSkin .mceButtonDisabled .mceIcon {
194
+ opacity: 0.3;
195
+ -ms-filter: 'alpha(opacity=30)';
196
+ filter: alpha(opacity = 30);
197
+ }
198
+
199
+ .cirkuitSkin .mceButtonLabeled {
200
+ width: auto;
201
+ }
202
+
203
+ .cirkuitSkin .mceButtonLabeled span.mceIcon {
204
+ float: left;
205
+ }
206
+
207
+ .cirkuitSkin span.mceButtonLabel {
208
+ display: block;
209
+ font-size: 10px;
210
+ padding: 4px 6px 0 22px;
211
+ font-family: Tahoma, Verdana, Arial, Helvetica;
212
+ }
213
+
214
+ .cirkuitSkin .mceButtonDisabled .mceButtonLabel {
215
+ color: #888;
216
+ }
217
+
218
+ /* Separator */
219
+ .cirkuitSkin .mceSeparator {
220
+ background: none repeat scroll 0 0 transparent;
221
+ display: block;
222
+ height: 24px;
223
+ margin: 0 2px;
224
+ overflow: hidden;
225
+ width: 1px;
226
+ }
227
+
228
+ /* ListBox */
229
+ .cirkuitSkin .mceListBox {
230
+ direction: ltr;
231
+ margin: 1px;
232
+ }
233
+
234
+ .cirkuitSkin .mceListBox, .cirkuitSkin .mceListBox a {
235
+ display: block
236
+ }
237
+
238
+ .cirkuitSkin .mceListBox .mceText {
239
+ padding: 1px 2px 1px 5px;
240
+ text-align: left;
241
+ text-decoration: none !important;
242
+ width: 70px;
243
+ background-image: url(img/butt2.png);
244
+ background-position: left top;
245
+ background-repeat: repeat-x;
246
+ font-family: Tahoma, Verdana, Arial, Helvetica;
247
+ font-size: 11px;
248
+ height: 20px;
249
+ line-height: 20px;
250
+ overflow: hidden;
251
+ }
252
+
253
+ .cirkuitSkin .mceListBox .mceText, .cirkuitSkin .mceListBox .mceOpen {
254
+ background-color: #D5D5D5;
255
+ border-color: #B2B2B2;
256
+ }
257
+
258
+ .cirkuitSkin table.mceListBoxEnabled:hover .mceOpen, .cirkuitSkin .mceListBoxHover .mceOpen, .cirkuitSkin .mceListBoxSelected .mceOpen, .cirkuitSkin .mceListBoxSelected .mceText {
259
+ border-color: #777 !important;
260
+ background-color: #d5d5d5 !important;
261
+ }
262
+
263
+ .cirkuitSkin table.mceListBoxEnabled:hover .mceText, .cirkuitSkin .mceListBoxHover .mceText {
264
+ border-color: #777 !important;
265
+ }
266
+
267
+ .cirkuitSkin table.mceListBoxEnabled:hover .mceText, .cirkuitSkin .mceListBoxHover .mceText, .cirkuitSkin .mceListBoxSelected .mceText, .cirkuitSkin table.mceListBoxEnabled:hover .mceOpen, .cirkuitSkin .mceListBoxHover .mceOpen, .cirkuitSkin .mceListBoxSelected .mceOpen {
268
+ background-image: none;
269
+ }
270
+
271
+ .cirkuitSkin .mceListBoxDisabled a.mceText {
272
+ color: gray;
273
+ background-color: transparent;
274
+ }
275
+
276
+ .cirkuitSkin .mceListBoxMenu {
277
+ overflow: auto;
278
+ overflow-x: hidden
279
+ }
280
+
281
+ .cirkuitSkin .mceOldBoxModel .mceListBox .mceText {
282
+ height: 22px
283
+ }
284
+
285
+ .cirkuitSkin .mceOldBoxModel .mceListBox .mceOpen {
286
+ width: 11px;
287
+ height: 22px;
288
+ }
289
+
290
+ .cirkuitSkin select.mceNativeListBox {
291
+ font: 11px 'Lucida Grande', Helvetica, Arial, sans-serif;
292
+ background: #F0F0EE;
293
+ border: 1px solid gray;
294
+ margin-right: 2px;
295
+ }
296
+
297
+ .cirkuitSkin .mceListBox .mceOpen {
298
+ width: 14px;
299
+ height: 20px;
300
+ border-collapse: separate;
301
+ background-image: url(img/butt2.png);
302
+ background-position: left top;
303
+ background-repeat: repeat-x;
304
+ padding: 1px;
305
+ border-left: 0 none !important;
306
+ }
307
+
308
+ .cirkuitSkin .mceListBox .mceOpen span {
309
+ display: block;
310
+ width: 14px;
311
+ height: 20px;
312
+ background-image: url(img/down_arrow.gif);
313
+ background-position: 2px 1px;
314
+ background-repeat: no-repeat;
315
+ }
316
+
317
+ /* SplitButton */
318
+ .cirkuitSkin .mceSplitButton {
319
+ width: 32px;
320
+ height: 20px;
321
+ direction: ltr
322
+ }
323
+
324
+ .cirkuitSkin .mceSplitButton a, .cirkuitSkin .mceSplitButton span {
325
+ height: 20px;
326
+ }
327
+
328
+ .cirkuitSkin .mceSplitButton a {
329
+ display: block;
330
+ }
331
+
332
+ .cirkuitSkin .mceSplitButton a.mceAction {
333
+ height: 20px;
334
+ width: 20px;
335
+ padding: 1px 2px;
336
+ display: block;
337
+ }
338
+
339
+ .cirkuitSkin .mceSplitButton span.mceAction {
340
+ width: 20px;
341
+ background: url('img/icons.png') 20px 20px;
342
+ display: block;
343
+ }
344
+
345
+ .cirkuitSkin .mceSplitButton a.mceOpen {
346
+ width: 10px;
347
+ height: 20px;
348
+ background-image: url(img/down_arrow.gif);
349
+ background-position: 1px 2px;
350
+ background-repeat: no-repeat;
351
+ padding: 1px;
352
+ border-left: 0 none !important;
353
+ }
354
+
355
+ .cirkuitSkin .mceSplitButtonDisabled .mceAction, .cirkuitSkin .mceSplitButtonDisabled span.mceOpen {
356
+ opacity: 0.3;
357
+ filter: alpha(opacity = 30);
358
+ }
359
+
360
+ .cirkuitSkin .mceSplitButtonActive a.mceAction {
361
+ border: 1px solid #0A246A;
362
+ background-color: #C2CBE0;
363
+ }
364
+
365
+ .cirkuitSkin table.mceSplitButton td {
366
+ background-image: url(img/butt2.png);
367
+ background-position: left top;
368
+ background-repeat: repeat-x;
369
+ }
370
+
371
+ .cirkuitSkin .mceSplitButton a.mceAction, .cirkuitSkin .mceSplitButton a.mceOpen {
372
+ border-color: #B2B2B2;
373
+ }
374
+
375
+ .cirkuitSkin .mceListBox a.mceText, .cirkuitSkin .mceSplitButton a.mceAction {
376
+ -moz-border-radius-bottomleft: 3px;
377
+ -webkit-border-bottom-left-radius: 3px;
378
+ -khtml-border-bottom-left-radius: 3px;
379
+ border-bottom-left-radius: 3px;
380
+ -moz-border-radius-topleft: 3px;
381
+ -webkit-border-top-left-radius: 3px;
382
+ -khtml-border-top-left-radius: 3px;
383
+ border-top-left-radius: 3px;
384
+ }
385
+
386
+ .cirkuitSkin .mceSplitButton a.mceOpen, .cirkuitSkin .mceListBox a.mceOpen {
387
+ -moz-border-radius-bottomright: 3px;
388
+ -webkit-border-bottom-right-radius: 3px;
389
+ -khtml-border-bottom-right-radius: 3px;
390
+ border-bottom-right-radius: 3px;
391
+ -moz-border-radius-topright: 3px;
392
+ -webkit-border-top-right-radius: 3px;
393
+ -khtml-border-top-right-radius: 3px;
394
+ border-top-right-radius: 3px;
395
+ }
396
+
397
+ .cirkuitSkin .mceSplitButton a.mceOpen:hover, .cirkuitSkin .mceSplitButtonSelected a.mceOpen, .cirkuitSkin table.mceSplitButtonEnabled:hover a.mceAction, .cirkuitSkin .mceSplitButton a.mceAction:hover {
398
+ background-color: #d5d5d5;
399
+ border-color: #777 !important;
400
+ }
401
+
402
+ /* ColorSplitButton */
403
+ .cirkuitSkin div.mceColorSplitMenu table {
404
+ background: #FFF;
405
+ border: 1px solid gray
406
+ }
407
+
408
+ .cirkuitSkin .mceColorSplitMenu td {
409
+ padding: 2px
410
+ }
411
+
412
+ .cirkuitSkin .mceColorSplitMenu a {
413
+ display: block;
414
+ width: 9px;
415
+ height: 9px;
416
+ overflow: hidden;
417
+ border: 1px solid #808080
418
+ }
419
+
420
+ .cirkuitSkin .mceColorSplitMenu td.mceMoreColors {
421
+ padding: 1px 3px 1px 1px
422
+ }
423
+
424
+ .cirkuitSkin .mceColorSplitMenu a.mceMoreColors {
425
+ width: 100%;
426
+ height: auto;
427
+ text-align: center;
428
+ font-family: Tahoma, Verdana, Arial, Helvetica;
429
+ font-size: 11px;
430
+ line-height: 20px;
431
+ border: 1px solid #FFF
432
+ }
433
+
434
+ .cirkuitSkin .mceColorSplitMenu a.mceMoreColors:hover {
435
+ border: 1px solid #0A246A;
436
+ background-color: #B6BDD2
437
+ }
438
+
439
+ .cirkuitSkin a.mceMoreColors:hover {
440
+ border: 1px solid #0A246A
441
+ }
442
+
443
+ .cirkuitSkin .mceColorPreview {
444
+ margin-left: 2px;
445
+ width: 16px;
446
+ height: 3px;
447
+ overflow: hidden;
448
+ background: #9a9b9a
449
+ }
450
+
451
+ .cirkuitSkin .mce_forecolor span.mceAction, .cirkuitSkin .mce_backcolor span.mceAction {
452
+ overflow: hidden;
453
+ height: 16px
454
+ }
455
+
456
+ /* Menu */
457
+ .cirkuitSkin .mceMenu {
458
+ position: absolute;
459
+ left: 0;
460
+ top: 0;
461
+ z-index: 1000;
462
+ border: 1px solid #D4D0C8
463
+ }
464
+
465
+ .cirkuitSkin .mceNoIcons span.mceIcon {
466
+ width: 0;
467
+ }
468
+
469
+ .cirkuitSkin .mceNoIcons a .mceText {
470
+ padding-left: 10px
471
+ }
472
+
473
+ .cirkuitSkin .mceMenu table {
474
+ background: #FFF
475
+ }
476
+
477
+ .cirkuitSkin .mceMenu a, .cirkuitSkin .mceMenu span, .cirkuitSkin .mceMenu {
478
+ display: block
479
+ }
480
+
481
+ .cirkuitSkin .mceMenu td {
482
+ height: 20px
483
+ }
484
+
485
+ .cirkuitSkin .mceMenu a {
486
+ position: relative;
487
+ padding: 3px 0 4px 0
488
+ }
489
+
490
+ .cirkuitSkin .mceMenu .mceText {
491
+ position: relative;
492
+ display: block;
493
+ font-family: 'Lucida Grande', Helvetica, Arial, sans-serif;
494
+ color: #000;
495
+ cursor: default;
496
+ margin: 0;
497
+ padding: 0 25px 0 25px;
498
+ display: block
499
+ }
500
+
501
+ .cirkuitSkin .mceMenu span.mceText, .cirkuitSkin .mceMenu .mcePreview {
502
+ font-size: 11px
503
+ }
504
+
505
+ .cirkuitSkin .mceMenu pre.mceText {
506
+ font-family: Monospace
507
+ }
508
+
509
+ .cirkuitSkin .mceMenu .mceIcon {
510
+ position: absolute;
511
+ top: 0;
512
+ left: 0;
513
+ width: 22px;
514
+ }
515
+
516
+ .cirkuitSkin .mceMenu .mceMenuItemEnabled a:hover, .cirkuitSkin .mceMenu .mceMenuItemActive {
517
+ background-color: #dbecf3
518
+ }
519
+
520
+ .cirkuitSkin td.mceMenuItemSeparator {
521
+ background: #DDD;
522
+ height: 1px
523
+ }
524
+
525
+ .cirkuitSkin .mceMenuItemTitle a {
526
+ border: 0;
527
+ background: #EEE;
528
+ border-bottom: 1px solid #DDD
529
+ }
530
+
531
+ .cirkuitSkin .mceMenuItemTitle span.mceText {
532
+ color: #000;
533
+ font-weight: bold;
534
+ padding-left: 4px
535
+ }
536
+
537
+ .cirkuitSkin .mceMenuItemDisabled .mceText {
538
+ color: #888
539
+ }
540
+
541
+ .cirkuitSkin .mceMenuItemSelected .mceIcon {
542
+ background: url('img/menu-check.png')
543
+ }
544
+
545
+ .cirkuitSkin .mceNoIcons .mceMenuItemSelected a {
546
+ background: url('img/menu-arrow.png') no-repeat -6px center
547
+ }
548
+
549
+ .cirkuitSkin .mceMenu span.mceMenuLine {
550
+ display: none
551
+ }
552
+
553
+ .cirkuitSkin .mceMenuItemSub a {
554
+ background: url('img/menu-arrow.png') no-repeat top right;
555
+ }
556
+
557
+ /* Progress,Resize */
558
+ .cirkuitSkin .mceBlocker {
559
+ position: absolute;
560
+ left: 0;
561
+ top: 0;
562
+ z-index: 1000;
563
+ opacity: 0.5;
564
+ -ms-filter: 'alpha(opacity=50)';
565
+ filter: alpha(opacity = 50);
566
+ background: #FFF
567
+ }
568
+
569
+ .cirkuitSkin .mceProgress {
570
+ position: absolute;
571
+ left: 0;
572
+ top: 0;
573
+ z-index: 1001;
574
+ background: url('img/progress.gif') no-repeat;
575
+ width: 32px;
576
+ height: 32px;
577
+ margin: -16px 0 0 -16px
578
+ }
579
+
580
+ .cirkuitSkin .mcePlaceHolder {
581
+ border: 1px dotted gray
582
+ }
583
+
584
+ /* Formats */
585
+ .cirkuitSkin .mce_formatPreview a {
586
+ font-size: 10px
587
+ }
588
+
589
+ .cirkuitSkin .mce_p span.mceText {
590
+ }
591
+
592
+ .cirkuitSkin .mce_address span.mceText {
593
+ font-style: italic
594
+ }
595
+
596
+ .cirkuitSkin .mce_pre span.mceText {
597
+ font-family: monospace
598
+ }
599
+
600
+ .cirkuitSkin .mce_h1 span.mceText {
601
+ font-weight: bolder;
602
+ font-size: 2em
603
+ }
604
+
605
+ .cirkuitSkin .mce_h2 span.mceText {
606
+ font-weight: bolder;
607
+ font-size: 1.5em
608
+ }
609
+
610
+ .cirkuitSkin .mce_h3 span.mceText {
611
+ font-weight: bolder;
612
+ font-size: 1.17em
613
+ }
614
+
615
+ .cirkuitSkin .mce_h4 span.mceText {
616
+ font-weight: bolder;
617
+ font-size: 1em
618
+ }
619
+
620
+ .cirkuitSkin .mce_h5 span.mceText {
621
+ font-weight: bolder;
622
+ font-size: .83em
623
+ }
624
+
625
+ .cirkuitSkin .mce_h6 span.mceText {
626
+ font-weight: bolder;
627
+ font-size: .75em
628
+ }
629
+
630
+ /* border */
631
+ .cirkuitSkin .mceExternalToolbar, .cirkuitSkin .mceButton, .cirkuitSkin a.mceButtonEnabled:hover, .cirkuitSkin a.mceButtonActive, .cirkuitSkin a.mceButtonSelected, .cirkuitSkin .mceListBox .mceText, .cirkuitSkin .mceListBox .mceOpen, .cirkuitSkin table.mceListBoxEnabled:hover .mceText, .cirkuitSkin .mceListBoxHover .mceText, .cirkuitSkin .mceListBoxSelected .mceText, .cirkuitSkin table.mceListBoxEnabled:hover .mceOpen, .cirkuitSkin .mceListBoxHover .mceOpen, .cirkuitSkin .mceListBoxSelected .mceOpen, .cirkuitSkin select.mceListBox, .cirkuitSkin .mceSplitButton a.mceAction, .cirkuitSkin .mceSplitButton a.mceOpen, .cirkuitSkin .mceSplitButton a.mceOpen:hover, .cirkuitSkin .mceSplitButtonSelected a.mceOpen, .cirkuitSkin table.mceSplitButtonEnabled:hover a.mceAction, .cirkuitSkin .mceSplitButton a.mceAction:hover, .cirkuitSkin div.mceColorSplitMenu table, .cirkuitSkin .mceColorSplitMenu a, .cirkuitSkin .mceColorSplitMenu a.mceMoreColors, .cirkuitSkin .mceColorSplitMenu a.mceMoreColors:hover, .cirkuitSkin a.mceMoreColors:hover, .cirkuitSkin .mceMenu {
632
+ border-style: solid;
633
+ border-width: 1px;
634
+ }
635
+
636
+ /* Theme */
637
+ .cirkuitSkin span.mce_bold {
638
+ background-position: 0 0 !important;
639
+ }
640
+
641
+ .cirkuitSkin span.mce_italic {
642
+ background-position: -60px 0 !important;
643
+ }
644
+
645
+ .cirkuitSkin span.mce_underline {
646
+ background-position: -140px 0 !important;
647
+ }
648
+
649
+ .cirkuitSkin span.mce_strikethrough {
650
+ background-position: -120px 0 !important;
651
+ }
652
+
653
+ .cirkuitSkin span.mce_undo {
654
+ background-position: -160px 0 !important;
655
+ }
656
+
657
+ .cirkuitSkin span.mce_redo {
658
+ background-position: -100px 0 !important;
659
+ }
660
+
661
+ .cirkuitSkin span.mce_cleanup {
662
+ background-position: -40px 0 !important;
663
+ }
664
+
665
+ .cirkuitSkin span.mce_bullist {
666
+ background-position: -20px 0 !important;
667
+ }
668
+
669
+ .cirkuitSkin span.mce_numlist {
670
+ background-position: -80px 0 !important;
671
+ }
672
+
673
+ .cirkuitSkin span.mce_justifyleft {
674
+ background-position: -460px 0 !important;
675
+ }
676
+
677
+ .cirkuitSkin span.mce_justifyright {
678
+ background-position: -480px 0 !important;
679
+ }
680
+
681
+ .cirkuitSkin span.mce_justifycenter {
682
+ background-position: -420px 0 !important;
683
+ }
684
+
685
+ .cirkuitSkin span.mce_justifyfull {
686
+ background-position: -440px 0 !important;
687
+ }
688
+
689
+ .cirkuitSkin span.mce_anchor {
690
+ background-position: -200px 0 !important;
691
+ }
692
+
693
+ .cirkuitSkin span.mce_indent {
694
+ background-position: -400px 0 !important;
695
+ }
696
+
697
+ .cirkuitSkin span.mce_outdent {
698
+ background-position: -540px 0 !important;
699
+ }
700
+
701
+ .cirkuitSkin span.mce_link {
702
+ background-position: -500px 0 !important;
703
+ }
704
+
705
+ .cirkuitSkin span.mce_unlink {
706
+ background-position: -640px 0 !important;
707
+ }
708
+
709
+ .cirkuitSkin span.mce_sub {
710
+ background-position: -600px 0 !important;
711
+ }
712
+
713
+ .cirkuitSkin span.mce_sup {
714
+ background-position: -620px 0 !important;
715
+ }
716
+
717
+ .cirkuitSkin span.mce_removeformat {
718
+ background-position: -580px 0 !important;
719
+ }
720
+
721
+ .cirkuitSkin span.mce_newdocument {
722
+ background-position: -520px 0 !important;
723
+ }
724
+
725
+ .cirkuitSkin span.mce_image {
726
+ background-position: -380px 0 !important;
727
+ }
728
+
729
+ .cirkuitSkin span.mce_help {
730
+ background-position: -340px 0 !important;
731
+ }
732
+
733
+ .cirkuitSkin span.mce_code {
734
+ background-position: -260px 0 !important;
735
+ }
736
+
737
+ .cirkuitSkin span.mce_hr {
738
+ background-position: -360px 0 !important;
739
+ }
740
+
741
+ .cirkuitSkin span.mce_visualaid {
742
+ background-position: -660px 0 !important;
743
+ }
744
+
745
+ .cirkuitSkin span.mce_charmap {
746
+ background-position: -240px 0 !important;
747
+ }
748
+
749
+ .cirkuitSkin span.mce_paste {
750
+ background-position: -560px 0 !important;
751
+ }
752
+
753
+ .cirkuitSkin span.mce_copy {
754
+ background-position: -700px 0 !important;
755
+ }
756
+
757
+ .cirkuitSkin span.mce_cut {
758
+ background-position: -680px 0 !important;
759
+ }
760
+
761
+ .cirkuitSkin span.mce_blockquote {
762
+ background-position: -220px 0 !important;
763
+ }
764
+
765
+ .cirkuitSkin .mce_forecolor span.mceAction {
766
+ background-position: -720px 0 !important;
767
+ }
768
+
769
+ .cirkuitSkin .mce_backcolor span.mceAction {
770
+ background-position: -760px 0 !important;
771
+ }
772
+
773
+ .cirkuitSkin span.mce_forecolorpicker {
774
+ background-position: -720px 0 !important;
775
+ }
776
+
777
+ .cirkuitSkin span.mce_backcolorpicker {
778
+ background-position: -760px 0 !important;
779
+ }
780
+
781
+ /* Plugins */
782
+ .cirkuitSkin span.mce_advhr {
783
+ background-position: -0px -20px !important;
784
+ }
785
+
786
+ .cirkuitSkin span.mce_ltr {
787
+ background-position: -20px -20px !important;
788
+ }
789
+
790
+ .cirkuitSkin span.mce_rtl {
791
+ background-position: -40px -20px !important;
792
+ }
793
+
794
+ .cirkuitSkin span.mce_emotions {
795
+ background-position: -60px -20px !important;
796
+ }
797
+
798
+ .cirkuitSkin span.mce_fullpage {
799
+ background-position: -80px -20px !important;
800
+ }
801
+
802
+ .cirkuitSkin span.mce_fullscreen {
803
+ background-position: -100px -20px !important;
804
+ }
805
+
806
+ .cirkuitSkin span.mce_iespell {
807
+ background-position: -120px -20px !important;
808
+ }
809
+
810
+ .cirkuitSkin span.mce_insertdate {
811
+ background-position: -140px -20px !important;
812
+ }
813
+
814
+ .cirkuitSkin span.mce_inserttime {
815
+ background-position: -160px -20px !important;
816
+ }
817
+
818
+ .cirkuitSkin span.mce_absolute {
819
+ background-position: -180px -20px !important;
820
+ }
821
+
822
+ .cirkuitSkin span.mce_backward {
823
+ background-position: -200px -20px !important;
824
+ }
825
+
826
+ .cirkuitSkin span.mce_forward {
827
+ background-position: -220px -20px !important;
828
+ }
829
+
830
+ .cirkuitSkin span.mce_insert_layer {
831
+ background-position: -240px -20px !important;
832
+ }
833
+
834
+ .cirkuitSkin span.mce_insertlayer {
835
+ background-position: -260px -20px !important;
836
+ }
837
+
838
+ .cirkuitSkin span.mce_movebackward {
839
+ background-position: -280px -20px !important;
840
+ }
841
+
842
+ .cirkuitSkin span.mce_moveforward {
843
+ background-position: -300px -20px !important;
844
+ }
845
+
846
+ .cirkuitSkin span.mce_media {
847
+ background-position: -320px -20px !important;
848
+ }
849
+
850
+ .cirkuitSkin span.mce_nonbreaking {
851
+ background-position: -340px -20px !important;
852
+ }
853
+
854
+ .cirkuitSkin span.mce_pastetext {
855
+ background-position: -360px -20px !important;
856
+ }
857
+
858
+ .cirkuitSkin span.mce_pasteword {
859
+ background-position: -380px -20px !important;
860
+ }
861
+
862
+ .cirkuitSkin span.mce_selectall {
863
+ background-position: -400px -20px !important;
864
+ }
865
+
866
+ .cirkuitSkin span.mce_preview {
867
+ background-position: -420px -20px !important;
868
+ }
869
+
870
+ .cirkuitSkin span.mce_print {
871
+ background-position: -440px -20px !important;
872
+ }
873
+
874
+ .cirkuitSkin span.mce_cancel {
875
+ background-position: -460px -20px !important;
876
+ }
877
+
878
+ .cirkuitSkin span.mce_save {
879
+ background-position: -480px -20px !important;
880
+ }
881
+
882
+ .cirkuitSkin span.mce_replace {
883
+ background-position: -500px -20px !important;
884
+ }
885
+
886
+ .cirkuitSkin span.mce_search {
887
+ background-position: -520px -20px !important;
888
+ }
889
+
890
+ .cirkuitSkin span.mce_styleprops {
891
+ background-position: -560px -20px !important;
892
+ }
893
+
894
+ .cirkuitSkin span.mce_table {
895
+ background-position: -580px -20px !important;
896
+ }
897
+
898
+ .cirkuitSkin span.mce_cell_props {
899
+ background-position: -600px -20px !important;
900
+ }
901
+
902
+ .cirkuitSkin span.mce_delete_table {
903
+ background-position: -620px -20px !important;
904
+ }
905
+
906
+ .cirkuitSkin span.mce_delete_col {
907
+ background-position: -640px -20px !important;
908
+ }
909
+
910
+ .cirkuitSkin span.mce_delete_row {
911
+ background-position: -660px -20px !important;
912
+ }
913
+
914
+ .cirkuitSkin span.mce_col_after {
915
+ background-position: -680px -20px !important;
916
+ }
917
+
918
+ .cirkuitSkin span.mce_col_before {
919
+ background-position: -700px -20px !important;
920
+ }
921
+
922
+ .cirkuitSkin span.mce_row_after {
923
+ background-position: -720px -20px !important;
924
+ }
925
+
926
+ .cirkuitSkin span.mce_row_before {
927
+ background-position: -740px -20px !important;
928
+ }
929
+
930
+ .cirkuitSkin span.mce_merge_cells {
931
+ background-position: -760px -20px !important;
932
+ }
933
+
934
+ .cirkuitSkin span.mce_table_props {
935
+ background-position: -980px -20px !important;
936
+ }
937
+
938
+ .cirkuitSkin span.mce_row_props {
939
+ background-position: -780px -20px !important;
940
+ }
941
+
942
+ .cirkuitSkin span.mce_split_cells {
943
+ background-position: -800px -20px !important;
944
+ }
945
+
946
+ .cirkuitSkin span.mce_template {
947
+ background-position: -820px -20px !important;
948
+ }
949
+
950
+ .cirkuitSkin span.mce_visualchars {
951
+ background-position: -840px -20px !important;
952
+ }
953
+
954
+ .cirkuitSkin span.mce_abbr {
955
+ background-position: -860px -20px !important;
956
+ }
957
+
958
+ .cirkuitSkin span.mce_acronym {
959
+ background-position: -880px -20px !important;
960
+ }
961
+
962
+ .cirkuitSkin span.mce_attribs {
963
+ background-position: -900px -20px !important;
964
+ }
965
+
966
+ .cirkuitSkin span.mce_cite {
967
+ background-position: -920px -20px !important;
968
+ }
969
+
970
+ .cirkuitSkin span.mce_del {
971
+ background-position: -940px -20px !important;
972
+ }
973
+
974
+ .cirkuitSkin span.mce_ins {
975
+ background-position: -960px -20px !important;
976
+ }
977
+
978
+ .cirkuitSkin span.mce_pagebreak {
979
+ background-position: 0 -40px !important;
980
+ }
981
+
982
+ .cirkuitSkin .mce_spellchecker span.mceAction {
983
+ background-position: -540px -20px !important;
984
+ }
985
+
986
+ .cirkuitSkin span.mce_restoredraft {
987
+ background-position: -20px -40px !important;
988
+ }