You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

styles.css 77KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534
  1. .v-theme-version:after {content:"6_3_0_dev-20100304";}
  2. .v-theme-version-6_3_0_dev-20100304 {display: none;}
  3. /* Automatically compiled css file from subdirectories. */
  4. .v-absolutelayout-wrapper {
  5. position: absolute;
  6. overflow: hidden;
  7. }
  8. .v-accordion {
  9. position: relative;
  10. outline: none;
  11. overflow: hidden;
  12. text-align: left /* Force default alignment */
  13. }
  14. .v-accordion-item {
  15. position: relative;
  16. }
  17. .v-accordion-item-caption {
  18. overflow: hidden;
  19. white-space: nowrap;
  20. background: #eee;
  21. border-bottom: 1px solid #ddd;
  22. }
  23. .v-accordion-item-caption .v-caption {
  24. cursor: pointer;
  25. }
  26. .v-accordion-item-open .v-accordion-item-caption .v-caption {
  27. cursor: default;
  28. }
  29. .v-accordion-item-content {
  30. position: absolute;
  31. overflow: auto;
  32. width: 100%;
  33. }
  34. /*
  35. * Default button (more customizable)
  36. * -------------------------------------- */
  37. .v-button {
  38. display: inline-block;
  39. zoom: 1;
  40. text-align: center;
  41. text-decoration: none;
  42. border: 2px outset #ddd;
  43. background: #eee;
  44. cursor: pointer;
  45. white-space: nowrap;
  46. margin: 0;
  47. padding: .2em 1em;
  48. color: inherit;
  49. font: inherit;
  50. line-height: normal;
  51. -khtml-user-select: none;
  52. -moz-user-select: none;
  53. -ie-user-select: none;
  54. user-select: none;
  55. -webkit-box-sizing: border-box;
  56. -moz-box-sizing: border-box;
  57. -ms-box-sizing: border-box;
  58. box-sizing: border-box;
  59. }
  60. .v-button.v-disabled {
  61. cursor: default;
  62. }
  63. .v-ie6 .v-button {
  64. display: inline;
  65. }
  66. .v-ie7 .v-button {
  67. display: inline;
  68. }
  69. .v-button-wrap,
  70. .v-button-caption {
  71. vertical-align: middle;
  72. white-space: nowrap;
  73. font: inherit;
  74. color: inherit;
  75. line-height: normal;
  76. }
  77. .v-button .v-icon,
  78. .v-nativebutton .v-icon {
  79. vertical-align: middle;
  80. margin-right: 3px;
  81. border: none;
  82. }
  83. .v-button .v-errorindicator,
  84. .v-nativebutton .v-errorindicator {
  85. display: inline-block;
  86. zoom: 1;
  87. vertical-align: middle;
  88. float: none;
  89. }
  90. /* Link style (we really should deprecate this) */
  91. .v-button-link,
  92. .v-nativebutton-link {
  93. border: none;
  94. text-align: left;
  95. background: transparent;
  96. padding: 0;
  97. color: inherit;
  98. }
  99. /* Inset Safari focus outline a bit */
  100. .v-sa .v-button-link:focus{
  101. outline-offset: -3px;
  102. }
  103. .v-button-link .v-button-caption,
  104. .v-nativebutton-link .v-nativebutton-caption {
  105. text-decoration: underline;
  106. color: inherit;
  107. text-align: left;
  108. }
  109. /*
  110. * NativeButton styles (html button element)
  111. * -------------------------------------- */
  112. .v-nativebutton {
  113. text-align: center;
  114. cursor: pointer;
  115. white-space: nowrap;
  116. margin: 0;
  117. color: inherit;
  118. font: inherit;
  119. line-height: normal;
  120. }
  121. .v-nativebutton .v-nativebutton-caption {
  122. vertical-align: middle;
  123. white-space: nowrap;
  124. font: inherit;
  125. color: inherit;
  126. }
  127. .v-nativebutton .v-icon {
  128. vertical-align: middle;
  129. margin-right: 3px;
  130. }
  131. .v-nativebutton .v-errorindicator {
  132. display: inline-block;
  133. zoom: 1;
  134. float: none;
  135. }
  136. /* Fixes streched buttons in IE6 and IE7*/
  137. .v-ie6 .v-nativebutton {
  138. width: 1px;
  139. }
  140. .v-ie .v-nativebutton {
  141. overflow: visible;
  142. padding-left: 1em;
  143. padding-right: 1em;
  144. }
  145. .v-ie .v-nativebutton-link {
  146. padding: 0;
  147. }
  148. /*
  149. * Checkbox styles
  150. * -------------------------------------- */
  151. .v-checkbox,
  152. .v-checkbox label,
  153. .v-checkbox input,
  154. .v-checkbox .v-icon {
  155. vertical-align: middle;
  156. white-space: nowrap;
  157. }
  158. .v-checkbox .v-icon {
  159. margin: 0 2px;
  160. }
  161. .v-checkbox .v-errorindicator {
  162. float: none;
  163. display: inline;
  164. display: inline-block;
  165. zoom: 1;
  166. }
  167. /* Disabled by default
  168. .v-checkbox-error {
  169. background: #ffe0e0;
  170. }
  171. */
  172. /* Disabled by default
  173. .v-checkbox-required {
  174. background: #ffe0e0;
  175. }
  176. */
  177. .v-captionwrapper {
  178. text-align: left; /* Force default alignment */
  179. }
  180. .v-caption {
  181. overflow: hidden;
  182. white-space: nowrap;
  183. }
  184. .v-errorindicator {
  185. float: left;
  186. }
  187. .v-caption .v-icon {
  188. float: left;
  189. padding-right: 2px;
  190. vertical-align: middle;
  191. }
  192. .v-caption .v-captiontext {
  193. float: left;
  194. overflow: hidden;
  195. vertical-align: middle;
  196. }
  197. .v-caption .v-required-field-indicator {
  198. float: left;
  199. }
  200. /* Fix IE6 "double-float-margin-bug" */
  201. .v-ie6 .v-errorindicator,
  202. .v-ie6 .v-icon,
  203. .v-ie6 .v-captiontext,
  204. .v-ie6 .v-required-field-indicator {
  205. display: inline;
  206. }
  207. /* References the BODY tag generated by Vaadin application servlet */
  208. .v-generated-body {
  209. width: 100%;
  210. height: 100%;
  211. border: 0;
  212. margin: 0;
  213. overflow: hidden;
  214. }
  215. .v-app {
  216. height: 100%;
  217. }
  218. /* Force arrow cursor for all elements inside the app */
  219. .v-app,
  220. .v-window,
  221. .v-popupview-popup,
  222. .v-label,
  223. .v-caption {
  224. cursor: default;
  225. }
  226. div.v-app-loading {
  227. /* You can use this to provide indication for the user that the application is loading. */
  228. /* It is applied to the same element as .v-app */
  229. background-image: url(../base/common/img/loading-indicator.gif);
  230. background-repeat: no-repeat;
  231. background-position: 50%;
  232. }
  233. .v-view {
  234. height: 100%;
  235. width: 100%;
  236. overflow: auto;
  237. /* avoid scrollbars with margins in root layout */
  238. outline: none;
  239. margin-top: -1px;
  240. border-top: 1px solid transparent;
  241. position: relative;
  242. }
  243. /**
  244. * Try to handle printing somehow. Reasonable printing support
  245. * needs application specific planning and CSS tuning.
  246. */
  247. @media print {
  248. .v-generated-body {
  249. height: auto;
  250. min-height: 20cm;
  251. overflow: visible;
  252. }
  253. .v-app {
  254. height: auto;
  255. min-height: 20cm;
  256. }
  257. .v-view {
  258. overflow: visible;
  259. }
  260. .v-gridlayout {
  261. overflow: visible !important;
  262. }
  263. }
  264. .v-view:active,
  265. .v-view:focus {
  266. outline: none;
  267. }
  268. .v-app select,
  269. .v-window select {
  270. margin: 0;
  271. }
  272. .v-disabled {
  273. opacity: .3;
  274. filter: alpha(opacity=30);
  275. cursor: default;
  276. }
  277. .v-disabled * {
  278. cursor: default;
  279. }
  280. * html .v-disabled {
  281. zoom: 1;
  282. }
  283. *+html .v-disabled {
  284. zoom: 1;
  285. }
  286. .v-disabled .v-disabled {
  287. opacity: 1;
  288. }
  289. .v-required-field-indicator {
  290. padding-left: 2px;
  291. color: red;
  292. }
  293. .v-form fieldset {
  294. border: none;
  295. padding: 0;
  296. margin: 0;
  297. }
  298. /* Field modified */ /* Disabled by default
  299. .v-modified,
  300. .v-richtextarea.v-modified iframe.gwt-RichTextArea,
  301. .v-checkbox.v-modified,
  302. .v-modified .v-select-option,
  303. .v-modified .v-textfield,
  304. .v-modified .v-datefield-calendarpanel,
  305. .v-modified .v-select-select,
  306. .v-modified .v-select-twincol-selections,
  307. .v-modified .v-select-twincol-options,
  308. .v-modified .v-slider-base {
  309. background: #ffffe0;
  310. }
  311. */
  312. .v-tooltip {
  313. cursor: default;
  314. background: #fff;
  315. }
  316. .v-tooltip-text {
  317. overflow: auto;
  318. }
  319. .v-tooltip .v-errormessage {
  320. overflow: auto;
  321. }
  322. .v-contextmenu {
  323. background: #fff;
  324. }
  325. .v-contextmenu .gwt-MenuItem {
  326. cursor: pointer;
  327. vertical-align: middle;
  328. padding: 0;
  329. border: 0;
  330. margin: 0;
  331. }
  332. .v-contextmenu .gwt-MenuItem div {
  333. cursor: pointer;
  334. vertical-align: middle;
  335. white-space: nowrap;
  336. }
  337. .v-contextmenu .gwt-MenuItem-selected div {
  338. background: #aaa;
  339. color: #fff;
  340. }
  341. .v-contextmenu table {
  342. border-collapse: collapse;
  343. margin: 0;
  344. padding: 0;
  345. }
  346. .v-contextmenu .gwt-MenuItem img {
  347. margin-right: 1em;
  348. vertical-align: middle;
  349. }
  350. /* Margins are not supported within Label */
  351. .v-label pre {
  352. margin: 0;
  353. }
  354. /* A label with undefined width is always considered to be on one line */
  355. .v-label-undef-w {
  356. white-space: nowrap;
  357. }
  358. /* Revert line-height for heading elements inside labels */
  359. .v-label h1,
  360. .v-label h2,
  361. .v-label h3,
  362. .v-label h4,
  363. .v-label h5,
  364. .v-label h6 {
  365. line-height: normal;
  366. }
  367. /* Loading indicator states
  368. * Note: client side expects that loading indicator has a height. It depends on
  369. * this css property to ensure browsers have applied all required styles.
  370. */
  371. .v-loading-indicator,
  372. .v-loading-indicator-delay,
  373. .v-loading-indicator-wait {
  374. position: absolute;
  375. top: 0;
  376. right: 0;
  377. z-index: 30000;
  378. width: 31px;
  379. height: 31px;
  380. background: transparent url(../base/common/img/loading-indicator.gif);
  381. margin-right: 5px;
  382. margin-top: 5px;
  383. }
  384. .v-loading-indicator-delay {
  385. background-image: url(../base/common/img/loading-indicator-delay.gif);
  386. }
  387. .v-loading-indicator-wait {
  388. background-image: url(../base/common/img/loading-indicator-wait.gif);
  389. }
  390. /* Debug dialog */
  391. .v-debug-console {
  392. background: #fff;
  393. opacity: .9;
  394. border: 1px solid #000;
  395. font-family: sans-serif;
  396. }
  397. .v-debug-console-caption {
  398. background: #000;
  399. border-bottom: 1px solid grey;
  400. color: white;
  401. font-weight: bold;
  402. }
  403. .v-debug-console-content {
  404. font-size: x-small;
  405. overflow: auto;
  406. }
  407. .v-debug-console-content input {
  408. font-size: xx-small;
  409. }
  410. /* Debug style */
  411. .v-app .invalidlayout,
  412. .v-app .invalidlayout * {
  413. background: #f99 !important;
  414. }
  415. /* Fix for Liferay, issue #2384 */
  416. .v-app input[type="text"],
  417. .v-app input[type="password"],
  418. .v-app input[type="reset"],
  419. .v-app select,
  420. .v-app textarea ,
  421. .v-window input[type="text"],
  422. .v-window input[type="password"],
  423. .v-window input[type="reset"],
  424. .v-window select,
  425. .v-window textarea {
  426. padding: 2px;
  427. }
  428. /* TODO jouni: replace debug colors */
  429. .v-drag-element {
  430. z-index:60000;
  431. position:absolute;
  432. opacity: 0.4;
  433. filter: alpha(opacity=40);
  434. border: 1px solid #999;
  435. }
  436. .v-ddwrapper {
  437. background-color: cyan;
  438. }
  439. .v-ddwrapper-over-middle,
  440. .v-ddwrapper-over-center {
  441. background-color: LightGreen;
  442. }
  443. .v-ddwrapper-over-top {
  444. border-top: 2px solid green;
  445. }
  446. .v-ddwrapper-over-bottom {
  447. border-bottom: 2px solid green;
  448. }
  449. .v-ddwrapper-over-left {
  450. border-left: 2px solid green;
  451. }
  452. .v-ddwrapper-over-right {
  453. border-right: 2px solid green;
  454. }
  455. .v-csslayout {
  456. overflow: hidden;
  457. }
  458. .v-csslayout-margin-top {
  459. padding-top: 2em;
  460. }
  461. .v-csslayout-margin-bottom {
  462. padding-bottom: 2em;
  463. }
  464. .v-csslayout-margin-left {
  465. padding-left: 2em;
  466. }
  467. .v-csslayout-margin-right {
  468. padding-right: 2em;
  469. }
  470. .v-customcomponent {
  471. overflow: hidden;
  472. }
  473. .v-customlayout {
  474. overflow: hidden;
  475. }
  476. .v-datefield {
  477. white-space: nowrap;
  478. float: left; /* Force minimum width */
  479. }
  480. .v-datefield-textfield {
  481. vertical-align: top;
  482. }
  483. .v-datefield-button {
  484. cursor: pointer;
  485. }
  486. .v-readonly .v-datefield-button {
  487. display: none;
  488. }
  489. .v-datefield-calendarpanel table {
  490. width: 100%;
  491. }
  492. .v-datefield-calendarpanel td {
  493. padding: 0;
  494. margin: 0;
  495. }
  496. .v-datefield-calendarpanel-header td {
  497. text-align: center;
  498. }
  499. .v-datefield-calendarpanel-month {
  500. text-align: center;
  501. white-space: nowrap;
  502. }
  503. .v-datefield-calendarpanel-day,
  504. .v-datefield-calendarpanel-day-today {
  505. cursor: pointer;
  506. }
  507. .v-datefield-calendarpanel-day-today {
  508. border: 1px solid #ddd;
  509. }
  510. .v-disabled .v-datefield-calendarpanel-day,
  511. .v-disabled .v-datefield-calendarpanel-day-today {
  512. cursor: default;
  513. }
  514. .v-datefield-calendarpanel-day-disabled {
  515. cursor: default;
  516. opacity: .5;
  517. }
  518. .v-datefield-calendarpanel-day-selected {
  519. cursor: default;
  520. background: #333;
  521. color: #fff;
  522. }
  523. .v-datefield-time {
  524. white-space: nowrap;
  525. }
  526. .v-datefield-time .v-label {
  527. display: inline;
  528. }
  529. /* Disabled by default
  530. .v-datefield-error .v-textfield,
  531. .v-datefield-error .v-datefield-calendarpanel {
  532. background: #ffe0e0;
  533. }
  534. */
  535. /* Disabled by default
  536. .v-datefield-required .v-textfield,
  537. .v-datefield-required .v-datefield-calendarpanel {
  538. background:transparent;
  539. background-color: #ffe0e0;
  540. }
  541. */
  542. /* IE somehow loses generic v-disabled alpha. See #1960 */
  543. .v-ie6 .v-disabled .v-datefield-button,
  544. .v-ie6 .v-disabled .v-datefield-textfield,
  545. .v-ie7 .v-disabled .v-datefield-button,
  546. .v-ie7 .v-disabled .v-datefield-textfield {
  547. filter: alpha(opacity=30);
  548. }
  549. .v-formlayout-cell .v-errorindicator {
  550. display: block;
  551. }
  552. .v-formlayout-error-indicator {
  553. /* fix width so layout is not jumpy when error disappears */
  554. width: 12px;
  555. }
  556. .v-formlayout-captioncell {
  557. text-align:right;
  558. white-space: nowrap;
  559. }
  560. .v-formlayout-captioncell .v-caption {
  561. overflow: visible;
  562. }
  563. .v-formlayout-spacing .v-formlayout-row .v-formlayout-captioncell,
  564. .v-formlayout-spacing .v-formlayout-row .v-formlayout-contentcell,
  565. .v-formlayout-spacing .v-formlayout-row .v-formlayout-errorcell {
  566. padding-top: 1em;
  567. }
  568. .v-formlayout-spacing .v-formlayout-firstrow .v-formlayout-captioncell,
  569. .v-formlayout-spacing .v-formlayout-firstrow .v-formlayout-contentcell,
  570. .v-formlayout-spacing .v-formlayout-firstrow .v-formlayout-errorcell {
  571. padding-top: 0;
  572. }
  573. .v-formlayout-margin-top .v-formlayout-firstrow .v-formlayout-captioncell,
  574. .v-formlayout-margin-top .v-formlayout-firstrow .v-formlayout-contentcell,
  575. .v-formlayout-margin-top .v-formlayout-firstrow .v-formlayout-errorcell {
  576. padding-top: 2em;
  577. }
  578. .v-formlayout-margin-bottom .v-formlayout-lastrow .v-formlayout-captioncell,
  579. .v-formlayout-margin-bottom .v-formlayout-lastrow .v-formlayout-contentcell,
  580. .v-formlayout-margin-bottom .v-formlayout-lastrow .v-formlayout-errorcell {
  581. padding-bottom: 2em;
  582. }
  583. .v-formlayout-margin-left .v-formlayout-captioncell {
  584. padding-left: 2em;
  585. }
  586. .v-formlayout-margin-right .v-formlayout-contentcell {
  587. padding-right: 2em;
  588. }
  589. .v-formlayout-captioncell .v-caption .v-required-field-indicator {
  590. float: none;
  591. }
  592. .v-gridlayout-margin-top {
  593. padding-top: 2em;
  594. }
  595. .v-gridlayout-margin-bottom {
  596. padding-bottom: 2em;
  597. }
  598. .v-gridlayout-margin-left {
  599. padding-left: 2em;
  600. }
  601. .v-gridlayout-margin-right {
  602. padding-right: 2em;
  603. }
  604. .v-gridlayout-spacing-on {
  605. padding-left: 1em;
  606. padding-top: 1em;
  607. overflow: hidden;
  608. }
  609. .v-gridlayout-spacing,
  610. .v-gridlayout-spacing-off {
  611. padding-left: 0;
  612. padding-top: 0;
  613. }
  614. .v-gridlayout-spacing-off {
  615. overflow: hidden;
  616. }
  617. /* Ensure that resizing gridlayout works in IE */
  618. .v-ie6 .v-gridlayout,
  619. .v-ie7 .v-gridlayout {
  620. overflow: hidden;
  621. }
  622. .v-link {
  623. white-space: nowrap;
  624. }
  625. .v-link a {
  626. vertical-align: middle;
  627. text-decoration: none;
  628. }
  629. .v-link span {
  630. text-decoration: underline;
  631. vertical-align: middle;
  632. }
  633. .v-disabled a {
  634. cursor: default;
  635. }
  636. .v-link img {
  637. vertical-align: middle;
  638. border:none;
  639. }
  640. .v-app-loginpage .v-button,
  641. .v-app-loginpage .v-button {
  642. float: left; /* Force minimum width for button */
  643. }
  644. .v-menubar {
  645. float: left; /* Force minimum width */
  646. white-space: nowrap;
  647. }
  648. .v-menubar .v-menubar-menuitem {
  649. cursor: default;
  650. vertical-align: middle;
  651. white-space: nowrap;
  652. display: inline;
  653. display: inline-block;
  654. zoom: 1;
  655. }
  656. .v-menubar .v-menubar-menuitem-caption * {
  657. vertical-align: middle;
  658. white-space: nowrap;
  659. }
  660. .v-menubar-submenu {
  661. background: #fff;
  662. }
  663. .v-menubar-menuitem-selected {
  664. background: #333;
  665. color: #fff;
  666. }
  667. .v-menubar-submenu .v-menubar-menuitem {
  668. cursor: default;
  669. display: block;
  670. position: relative;
  671. padding-right: 1.5em;
  672. }
  673. .v-menubar-submenu .v-menubar-menuitem-caption {
  674. display: block;
  675. }
  676. .v-menubar-submenu .v-menubar-menuitem *,
  677. .v-menubar-submenu .v-menubar-menuitem-caption * {
  678. white-space: nowrap;
  679. }
  680. .v-menubar-submenu-indicator {
  681. display: none;
  682. /* Arial has the most coverage for geometric entity characters */
  683. font-family: arial, helvetica, sans-serif;
  684. }
  685. .v-menubar-submenu .v-menubar-submenu-indicator {
  686. display: block;
  687. position: absolute;
  688. right: 0;
  689. width: 1em;
  690. height: 1em;
  691. font-size: 0.9em;
  692. }
  693. .v-menubar-menuitem-disabled {
  694. color: #999;
  695. }
  696. .v-menubar-more-menuitem {
  697. /* Arial has the most coverage for geometric entity characters */
  698. font-family: arial, helvetica, sans-serif;
  699. }
  700. .v-menubar-separator {
  701. overflow: hidden;
  702. }
  703. .v-menubar-separator span {
  704. display: block;
  705. text-indent: -9999px;
  706. font-size: 1px;
  707. line-height: 1px;
  708. border-top: 1px solid #ddd;
  709. margin: 3px 0 2px;
  710. overflow: hidden;
  711. }
  712. .v-menubar .v-icon,
  713. .v-menubar-submenu .v-icon {
  714. margin-right: 3px;
  715. }
  716. .v-Notification {
  717. background: #999;
  718. color: #fff;
  719. cursor: pointer;
  720. overflow: hidden;
  721. padding: 1em;
  722. max-width:85%;
  723. }
  724. .v-Notification h1,
  725. .v-Notification p,
  726. .v-Notification-error h1,
  727. .v-Notification-error p,
  728. .v-Notification-warning h1,
  729. .v-Notification-warning p {
  730. display: inline;
  731. margin: 0 0.5em 0 0;
  732. }
  733. .v-Notification-warning {
  734. background: orange;
  735. }
  736. .v-Notification-error {
  737. background: red;
  738. }
  739. .v-Notification-tray h1 {
  740. display: block;
  741. }
  742. .v-Notification-tray p {
  743. display: block;
  744. }
  745. .v-Notification-system {
  746. background-color: red;
  747. opacity: .7;
  748. filter: alpha(opacity=70);
  749. }
  750. .v-Notification-system h1 {
  751. display: block;
  752. margin: 0;
  753. }
  754. .v-orderedlayout-margin-top,
  755. .v-horizontallayout-margin-top,
  756. .v-verticallayout-margin-top {
  757. padding-top: 2em;
  758. }
  759. .v-orderedlayout-margin-right,
  760. .v-horizontallayout-margin-right,
  761. .v-verticallayout-margin-right {
  762. padding-right: 2em;
  763. }
  764. .v-orderedlayout-margin-bottom,
  765. .v-horizontallayout-margin-bottom,
  766. .v-verticallayout-margin-bottom {
  767. padding-bottom: 2em;
  768. }
  769. .v-orderedlayout-margin-left,
  770. .v-horizontallayout-margin-left,
  771. .v-verticallayout-margin-left {
  772. padding-left: 2em;
  773. }
  774. .v-orderedlayout-spacing-on,
  775. .v-horizontallayout-spacing-on,
  776. .v-verticallayout-spacing-on {
  777. padding-top: 1em;
  778. padding-left: 1em;
  779. }
  780. /* This can be used to define spacing if spacing is off server side */
  781. .v-orderedlayout-spacing-off,
  782. .v-horizontallayout-spacing-off,
  783. .v-verticallayout-spacing-off {
  784. padding-top: 0;
  785. padding-left: 0;
  786. }
  787. /* To make sure IE don't expand elements larger than they should */
  788. .v-ie6 .v-orderedlayout,
  789. .v-ie6 .v-horizontallayout,
  790. .v-ie6 .v-verticallayout,
  791. .v-ie7 .v-orderedlayout,
  792. .v-ie7 .v-horizontallayout,
  793. .v-ie7 .v-verticallayout {
  794. overflow: hidden;
  795. }
  796. .v-panel,
  797. .v-panel-caption,
  798. .v-panel-content,
  799. .v-panel-deco,
  800. .v-panel-light,
  801. .v-panel-caption-light,
  802. .v-panel-content-light,
  803. .v-panel-deco-light {
  804. outline: none; /* Prevent selection outline which might break layouts or cause scrollbars */
  805. text-align: left /* Force default alignment */
  806. }
  807. .v-panel-caption .v-errorindicator {
  808. float: none;
  809. display: inline;
  810. }
  811. .v-panel-caption .v-icon {
  812. display: inline;
  813. vertical-align: middle;
  814. }
  815. .v-panel-caption span {
  816. vertical-align: middle;
  817. }
  818. .v-panel-caption {
  819. white-space: nowrap;
  820. overflow:hidden;
  821. font-weight: bold;
  822. }
  823. .v-panel-nocaption {
  824. overflow: hidden;
  825. }
  826. .v-panel-content {
  827. overflow: auto;
  828. }
  829. .v-panel-deco {
  830. }
  831. .v-popupview {
  832. cursor: pointer;
  833. text-decoration: underline;
  834. white-space: nowrap;
  835. }
  836. .v-popupview-popup {
  837. overflow: auto;
  838. }
  839. .v-popupview-loading {
  840. width: 30px;
  841. height: 30px;
  842. background: transparent url(../base/common/img/ajax-loader-medium.gif) no-repeat 50%;
  843. }
  844. .v-progressindicator {
  845. overflow: hidden; /* for IE6 */
  846. width: 150px;
  847. }
  848. .v-progressindicator-wrapper {
  849. overflow: hidden; /* for IE6 */
  850. height: 7px;
  851. border: 1px solid #ddd;
  852. }
  853. .v-progressindicator-indicator {
  854. height: 7px;
  855. overflow: hidden; /* for IE6 */
  856. background: #ddd;
  857. }
  858. div.v-progressindicator-indeterminate {
  859. height: 20px;
  860. width: 20px;
  861. overflow: hidden; /* for IE6 */
  862. background: #fff url(../base/common/img/ajax-loader-medium.gif) no-repeat 50%;
  863. border-radius: 4px;
  864. -webkit-border-radius: 4px;
  865. -moz-border-radius: 4px;
  866. }
  867. /* Hide obsolete elements in indeterminate mode */
  868. .v-progressindicator-indeterminate .v-progressindicator-wrapper,
  869. .v-progressindicator-indeterminate .v-progressindicator-indicator,
  870. .v-progressindicator-indeterminate-disabled .v-progressindicator-wrapper,
  871. .v-progressindicator-indeterminate-disabled .v-progressindicator-indicator {
  872. display: none;
  873. }
  874. div.v-progressindicator-indeterminate-disabled {
  875. height: 20px;
  876. width: 20px;
  877. overflow: hidden; /* for IE6 */
  878. background: transparent;
  879. }
  880. .v-select {
  881. text-align: left;
  882. }
  883. .v-select-optiongroup .v-select-option {
  884. display: block;
  885. white-space: nowrap;
  886. }
  887. .v-ie .v-select-optiongroup .v-select-option {
  888. zoom: 1;
  889. }
  890. .v-select-select {
  891. display: block;
  892. }
  893. .v-select-twincol {
  894. white-space: nowrap;
  895. }
  896. .v-select-twincol-options {
  897. float: left;
  898. }
  899. .v-select-twincol-selections {
  900. font-weight: bold;
  901. }
  902. .v-select-twincol-buttons {
  903. float: left;
  904. text-align: center;
  905. }
  906. .v-select-twincol-buttons .v-select-twincol-deco {
  907. clear: both;
  908. }
  909. .v-select-twincol .v-textfield {
  910. display: block;
  911. float: left;
  912. clear: left;
  913. }
  914. .v-select-twincol .v-button {
  915. float: left;
  916. }
  917. .v-select-twincol-buttons .v-button {
  918. float: none;
  919. }
  920. .v-filterselect {
  921. white-space: nowrap;
  922. text-align: left;
  923. }
  924. .v-filterselect .v-icon {
  925. float: left;
  926. }
  927. .v-app .v-filterselect-input,
  928. .v-window .v-filterselect-input,
  929. .v-popupview-popup .v-filterselect-input {
  930. float: left;
  931. }
  932. .v-filterselect-prompt .v-filterselect-input {
  933. color: #999;
  934. font-style: italic;
  935. }
  936. .v-filterselect-button {
  937. float: right;
  938. cursor: pointer;
  939. width: 1em;
  940. height: 1em;
  941. background: transparent url(../base/common/img/sprites.png) no-repeat -5px -8px;
  942. }
  943. .v-filterselect.v-readonly .v-filterselect-button {
  944. display: none;
  945. }
  946. .v-filterselect.v-readonly,
  947. .v-filterselect.v-readonly .v-filterselect-input {
  948. background: transparent;
  949. }
  950. .v-filterselect-suggestpopup {
  951. background: #fff;
  952. border: 1px solid #eee;
  953. }
  954. .v-filterselect-suggestmenu table {
  955. border-collapse: collapse;
  956. border: none;
  957. }
  958. .v-filterselect-suggestmenu .gwt-MenuItem {
  959. white-space: nowrap;
  960. }
  961. .v-filterselect-suggestmenu .gwt-MenuItem .v-icon {
  962. margin-right: 3px;
  963. vertical-align: middle;
  964. }
  965. .v-filterselect-suggestmenu .gwt-MenuItem span {
  966. vertical-align: middle;
  967. }
  968. .v-filterselect-suggestmenu .gwt-MenuItem-selected {
  969. background: #333;
  970. color: #fff;
  971. }
  972. .v-filterselect-nextpage,
  973. .v-filterselect-nextpage-off,
  974. .v-filterselect-prevpage-off,
  975. .v-filterselect-prevpage {
  976. width: 100%;
  977. background: #aaa;
  978. text-align: center;
  979. overflow: hidden;
  980. cursor: pointer;
  981. }
  982. .v-filterselect-nextpage-off,
  983. .v-filterselect-prevpage-off {
  984. color: #666;
  985. opacity: .5;
  986. filter: alpha(opacity=50);
  987. cursor: default;
  988. }
  989. .v-filterselect-nextpage-off span,
  990. .v-filterselect-prevpage-off span {
  991. cursor: default;
  992. }
  993. .v-filterselect-status {
  994. white-space: nowrap;
  995. text-align: center;
  996. }
  997. /* Error styles (disabled by default)
  998. .v-filterselect-error .v-filterselect-input,
  999. .v-select-error .v-select-option,
  1000. .v-select-error .v-select-select,
  1001. .v-select-error .v-select-twincol-selections,
  1002. .v-select-error .v-select-twincol-options {
  1003. background: #ffaaaa;
  1004. }
  1005. */
  1006. /* Required field styles (disabled by default)
  1007. .v-filterselect-error .v-filterselect-input,
  1008. .v-select-required .v-select-option,
  1009. .v-select-required .v-select-select,
  1010. .v-select-required .v-select-twincol-selections,
  1011. .v-select-required .v-select-twincol-options {
  1012. background: #ffaaaa;
  1013. }
  1014. */
  1015. .v-shadow {
  1016. position: absolute;
  1017. }
  1018. .v-shadow .top-left {
  1019. position: absolute; overflow: hidden;
  1020. top: -3px; left: -5px;
  1021. width: 10px; height: 10px;
  1022. background: transparent url(../base/shadow/img/top-left.png);
  1023. }
  1024. .v-shadow .top {
  1025. position: absolute; overflow: hidden;
  1026. top: -3px; left: 5px;
  1027. height: 10px; right: 5px;
  1028. background: transparent url(../base/shadow/img/top.png);
  1029. }
  1030. .v-shadow .top-right {
  1031. position: absolute; overflow: hidden;
  1032. top: -3px; right: -5px;
  1033. width: 10px; height: 10px;
  1034. background: transparent url(../base/shadow/img/top-right.png);
  1035. }
  1036. .v-shadow .left {
  1037. position: absolute; overflow: hidden;
  1038. top: 7px; left: -5px;
  1039. width: 10px;
  1040. bottom: 3px;
  1041. background: transparent url(../base/shadow/img/left.png);
  1042. }
  1043. .v-shadow .center {
  1044. position: absolute; overflow: hidden;
  1045. top: 7px; left: 5px;
  1046. bottom: 3px; right: 5px;
  1047. background: transparent url(../base/shadow/img/center.png);
  1048. }
  1049. .v-shadow .right {
  1050. position: absolute; overflow: hidden;
  1051. top: 7px; right: -5px;
  1052. width: 10px;
  1053. bottom: 3px;
  1054. background: transparent url(../base/shadow/img/right.png);
  1055. }
  1056. .v-shadow .bottom-left {
  1057. position: absolute; overflow: hidden;
  1058. bottom: -7px; left: -5px;
  1059. width: 10px; height: 10px;
  1060. background: transparent url(../base/shadow/img/bottom-left.png);
  1061. }
  1062. .v-shadow .bottom {
  1063. position: absolute; overflow: hidden;
  1064. bottom: -7px; left: 5px;
  1065. right: 5px; height: 10px;
  1066. background: transparent url(../base/shadow/img/bottom.png);
  1067. }
  1068. .v-shadow .bottom-right {
  1069. position: absolute; overflow: hidden;
  1070. bottom: -7px; right: -5px;
  1071. width: 10px; height: 10px;
  1072. background: transparent url(../base/shadow/img/bottom-right.png);
  1073. }
  1074. /* For IE6 (no transparent png's, we use a blur filter) */
  1075. .v-ie6 .v-shadow * {
  1076. display: none;
  1077. }
  1078. .v-ie6 .v-shadow {
  1079. background: #000;
  1080. filter: progid:DXImageTransform.Microsoft.Blur(pixelRadius=2) alpha(opacity=20);
  1081. margin-top: -2px;
  1082. margin-left: -2px;
  1083. }
  1084. .v-slider {
  1085. margin: 5px 0;
  1086. }
  1087. .v-slider-base {
  1088. /* changing the borders will require adjustments to ISlider.java */
  1089. height: 2px;
  1090. border-top: 1px solid #ddd;
  1091. background: #eee;
  1092. border-left: 1px solid #ddd;
  1093. border-right: 1px solid #eee;
  1094. }
  1095. .v-slider-handle {
  1096. background: #aaa;
  1097. width: 12px;
  1098. height: 12px;
  1099. margin-top: -5px;
  1100. font-size: 0;
  1101. }
  1102. .v-slider-vertical {
  1103. width: 2px;
  1104. height: auto;
  1105. margin: 0 5px;
  1106. border: none;
  1107. border-left: 1px solid #cccfd0;
  1108. border-right: 1px solid #cccfd0;
  1109. }
  1110. .v-slider-vertical .v-slider-base {
  1111. width: 2px;
  1112. border-bottom: 1px solid #eee;
  1113. border-right: none;
  1114. }
  1115. .v-slider-vertical .v-slider-handle {
  1116. width: 12px;
  1117. height: 12px;
  1118. font-size: 0;
  1119. margin-left: -5px;
  1120. }
  1121. .v-slider-feedback {
  1122. padding: 2px 5px;
  1123. background: #444;
  1124. color: #fff;
  1125. font-size: 11px;
  1126. line-height: 13px;
  1127. font-weight: bold;
  1128. font-family: Arial, Helvetica, sans-serif;
  1129. border-radius: 4px;
  1130. -webkit-border-radius: 4px;
  1131. -moz-border-radius: 4px;
  1132. margin: -2px 0 0 2px;
  1133. text-shadow: 0 1px 0 #000;
  1134. }
  1135. /* Disabled by default
  1136. .v-slider-error .v-slider-base {
  1137. background: #FFE0E0;
  1138. }
  1139. */
  1140. /* Disabled by default
  1141. .v-slider-required .v-slider-base {
  1142. background: #FFE0E0;
  1143. }
  1144. */
  1145. /* IE specific styles */
  1146. .v-ie6 .v-slider,
  1147. .v-ie6 .v-slider-vertical {
  1148. margin: 0;
  1149. }
  1150. .v-ie6 .v-slider .v-slider-handle {
  1151. margin: -1px 0;
  1152. }
  1153. .v-ie6 .v-slider-vertical .v-slider-handle {
  1154. margin: 0 -1px;
  1155. }
  1156. .v-splitpanel-horizontal,
  1157. .v-splitpanel-vertical {
  1158. overflow: hidden;
  1159. }
  1160. .v-splitpanel-hsplitter {
  1161. width: 6px;
  1162. font-size: 1px; /* for IE6 */
  1163. }
  1164. .v-splitpanel-hsplitter div {
  1165. width: 6px;
  1166. font-size: 1px; /* for IE6 */
  1167. position: absolute;
  1168. top: 0;
  1169. bottom: 0;
  1170. background: #ddd;
  1171. cursor: e-resize;
  1172. }
  1173. .v-splitpanel-vsplitter {
  1174. height: 6px;
  1175. font-size: 1px; /* for IE6 */
  1176. }
  1177. .v-splitpanel-vsplitter div {
  1178. height: 6px;
  1179. font-size: 1px; /* for IE6 */
  1180. background: #ddd;
  1181. cursor: n-resize;
  1182. }
  1183. /* IE specific styles */
  1184. .v-ie6 .v-splitpanel-hsplitter div {
  1185. height: 99%;
  1186. }
  1187. .v-ie6 .v-splitpanel-first-container,
  1188. .v-ie6 .v-splitpanel-second-container,
  1189. .v-ie7 .v-splitpanel-first-container,
  1190. .v-ie7 .v-splitpanel-second-container {
  1191. position: relative;
  1192. }
  1193. /* Table theme building instructions
  1194. *
  1195. * Vaadin scroll table is very complex widget with dozens of features. These
  1196. * features set some limitations for theme builder. To keep things working, it
  1197. * is safest to try to just override values used in default theme and comfort to
  1198. * these instructions.
  1199. *
  1200. * Borders in table header and in table body need to be same width
  1201. * - specify vertical borders on .v-table-header-wrap and .v-table-body
  1202. *
  1203. * Table cells in body:
  1204. * - padding/border for cells is to be defined for td elements (class name: .v-table-cell-content)
  1205. * - in default theme there are no borders, but they should work. Just set border-right or border-bottom
  1206. * - no padding or border is allowed for div inside cells (class name: .v-table-cell-wrapper) element
  1207. * - background is allowed for both elements
  1208. *
  1209. * Table headers:
  1210. * - table cells in header contain .v-table-resizer and
  1211. * .v-table-caption-container div elements, which are both floated to right
  1212. * - to align header caption to body content resizer width + .v-table-caption-container
  1213. * padding right should be equal to content cells padding-right and border-right.
  1214. * - Possible cell border in header must be themed into column resizer.
  1215. *
  1216. */
  1217. .v-table {
  1218. overflow: hidden;
  1219. text-align: left; /* Force default alignment */
  1220. }
  1221. .v-ie7 .v-table {
  1222. overflow: visible;
  1223. }
  1224. .v-table-header-wrap {
  1225. overflow: hidden;
  1226. border: 1px solid #aaa;
  1227. border-bottom: none;
  1228. background: #efefef;
  1229. }
  1230. .v-table-header table,
  1231. .v-table-table {
  1232. border-spacing: 0;
  1233. border-collapse: separate;
  1234. margin: 0;
  1235. padding: 0;
  1236. border: 0;
  1237. }
  1238. .v-table-header td {
  1239. padding: 0;
  1240. }
  1241. .v-table-header-cell,
  1242. .v-table-header-cell-asc,
  1243. .v-table-header-cell-desc {
  1244. cursor: pointer;
  1245. }
  1246. .v-table-resizer {
  1247. display: block;
  1248. height: 1.2em;
  1249. float: right;
  1250. background: #aaa;
  1251. cursor: col-resize;
  1252. width: 1px;
  1253. overflow: hidden;
  1254. }
  1255. .v-table-caption-container {
  1256. float: right;
  1257. overflow: hidden;
  1258. white-space: nowrap;
  1259. padding-right: 6px;
  1260. }
  1261. .v-table-header-cell-asc .v-table-caption-container {
  1262. background: transparent url(../base/common/img/sprites.png) no-repeat right 6px;
  1263. }
  1264. .v-table-header-cell-desc .v-table-caption-container {
  1265. background: transparent url(../base/common/img/sprites.png) no-repeat right -10px;
  1266. }
  1267. .v-table-body {
  1268. border: 1px solid #aaa;
  1269. }
  1270. .v-table-row-spacer {
  1271. height: 10px;
  1272. overflow: hidden; /* IE hack to allow < one line height divs */
  1273. }
  1274. .v-table-row,
  1275. .v-table-row-odd {
  1276. border: 0;
  1277. margin: 0;
  1278. padding: 0;
  1279. cursor: pointer;
  1280. }
  1281. .v-table-body-noselection .v-table-row,
  1282. .v-table-body-noselection .v-table-row-odd {
  1283. cursor: default;
  1284. }
  1285. .v-table .v-selected {
  1286. background: #999;
  1287. color: #fff;
  1288. }
  1289. .v-table-cell-content {
  1290. white-space: nowrap;
  1291. overflow: hidden;
  1292. padding: 0 6px;
  1293. border-right: 1px solid #aaa;
  1294. }
  1295. .v-table-cell-wrapper {
  1296. /* Do not specify any margins, paddings or borders here */
  1297. white-space: nowrap;
  1298. overflow: hidden;
  1299. }
  1300. .v-table-column-selector {
  1301. float: right;
  1302. background: transparent url(../base/common/img/sprites.png) no-repeat 4px -37px;
  1303. margin: -1.2em 0 0 0;
  1304. height: 1.2em;
  1305. width: 14px;
  1306. position: relative; /* hide this from IE, it works without it */
  1307. cursor: pointer;
  1308. }
  1309. .v-ie6 .v-table-column-selector,
  1310. .v-ie7 .v-table-column-selector {
  1311. position: static;
  1312. }
  1313. .v-table-focus-slot-left {
  1314. border-left: 2px solid #999;
  1315. margin-right: -2px;
  1316. }
  1317. .v-table-focus-slot-right {
  1318. border-right: 2px solid #999;
  1319. margin-left: -2px;
  1320. }
  1321. .v-table-header-drag {
  1322. position: absolute;
  1323. background: #efefef;
  1324. border: 1px solid #eee;
  1325. opacity: 0.9;
  1326. filter: alpha(opacity=90);
  1327. margin-top: 20px;
  1328. z-index: 30000;
  1329. }
  1330. .v-table-scrollposition {
  1331. width: 160px;
  1332. background: #eee;
  1333. border: 1px solid #aaa;
  1334. }
  1335. .v-table-scrollposition span {
  1336. display: block;
  1337. text-align: center;
  1338. }
  1339. /* row in column selector */
  1340. .v-on {
  1341. }
  1342. .v-off {
  1343. color: #ddd;
  1344. }
  1345. /* TODO remove important, replace with better anchors or order */
  1346. .v-table-row-drag-middle .v-table-cell-content {
  1347. background-color: cyan;
  1348. }
  1349. /* TODO consider using height neutral styling (scrollbar issues when pagelength = table.length ) */
  1350. .v-table-row-drag-top .v-table-cell-content {
  1351. border-top: 1px solid cyan ;
  1352. }
  1353. .v-table-row-drag-bottom .v-table-cell-content {
  1354. border-bottom: 1px solid cyan;
  1355. }
  1356. .v-tabsheet,
  1357. .v-tabsheet-content,
  1358. .v-tabsheet-deco {
  1359. outline: none; /* Prevent selection outline which might break layouts or cause scrollbars */
  1360. text-align: left /* Force default alignment */
  1361. }
  1362. .v-tabsheet-tabs {
  1363. empty-cells: hide;
  1364. border-collapse: collapse;
  1365. margin: 0;
  1366. padding: 0;
  1367. border: 0;
  1368. width: 100%;
  1369. overflow:hidden;
  1370. }
  1371. .v-tabsheet-tabitemcell,
  1372. .v-tabsheet-spacertd {
  1373. margin: 0;
  1374. padding: 0;
  1375. vertical-align: bottom;
  1376. }
  1377. .v-tabsheet-spacertd {
  1378. width: 100%;
  1379. }
  1380. .v-tabsheet-spacertd div {
  1381. border-left: 1px solid #aaa;
  1382. border-bottom: 1px solid #aaa;
  1383. height: 1em;
  1384. padding: 0.2em 0;
  1385. }
  1386. .v-tabsheet-hidetabs .v-tabsheet-tabcontainer {
  1387. display: none;
  1388. }
  1389. .v-tabsheet-scroller {
  1390. white-space: nowrap;
  1391. text-align: right;
  1392. margin-top: -1em;
  1393. }
  1394. .v-ff2 .v-tabsheet-scroller {
  1395. position: relative;
  1396. }
  1397. .v-disabled .v-tabsheet-scroller {
  1398. display: none;
  1399. }
  1400. .v-tabsheet-scrollerPrev,
  1401. .v-tabsheet-scrollerNext,
  1402. .v-tabsheet-scrollerPrev-disabled,
  1403. .v-tabsheet-scrollerNext-disabled {
  1404. border: 1px solid #aaa;
  1405. background: #fff;
  1406. width: 12px;
  1407. height: 1em;
  1408. cursor: pointer;
  1409. }
  1410. .v-tabsheet-scrollerPrev-disabled,
  1411. .v-tabsheet-scrollerNext-disabled {
  1412. opacity: 0.5;
  1413. cursor: default;
  1414. }
  1415. .v-tabsheet-tabs .v-caption,
  1416. .v-tabsheet-tabs .v-caption span {
  1417. white-space: nowrap;
  1418. }
  1419. .v-tabsheet-caption-close {
  1420. display: inline;
  1421. display: inline-block;
  1422. zoom: 1;
  1423. width: 16px;
  1424. height: 16px;
  1425. text-align: center;
  1426. font-weight: bold;
  1427. cursor: pointer;
  1428. vertical-align: middle;
  1429. user-select: none;
  1430. -khtml-user-select: none;
  1431. -ms-user-select: none;
  1432. -moz-user-select: none;
  1433. -webkit-user-select: none;
  1434. }
  1435. .v-tabsheet .v-disabled .v-tabsheet-caption-close {
  1436. cursor: default;
  1437. visibility: hidden;
  1438. }
  1439. .v-tabsheet-tabitemcell:hover .v-tabsheet-caption-close,
  1440. .v-ie6 .v-tabsheet-caption-close {
  1441. visibility: visible;
  1442. }
  1443. .v-ie6 .v-tabsheet-caption-close {
  1444. float: right;
  1445. }
  1446. .v-tabsheet-tabitem {
  1447. border: 1px solid #aaa;
  1448. border-right: none;
  1449. cursor: pointer;
  1450. padding: 0.2em 0.5em;
  1451. }
  1452. .v-tabsheet-tabitem .v-caption {
  1453. cursor: pointer;
  1454. }
  1455. .v-tabsheet-tabitem-selected {
  1456. cursor: default;
  1457. border-bottom-color: #fff;
  1458. }
  1459. .v-tabsheet-tabitem-selected .v-caption {
  1460. cursor: default;
  1461. }
  1462. .v-tabsheet-content {
  1463. border: 1px solid #aaa;
  1464. /* Vertical borders are not supported, use v-tabsheet-tabcontainer and v-tabsheet-deco to present these borders */
  1465. border-top: none;
  1466. border-bottom: none;
  1467. position: relative;
  1468. }
  1469. .v-tabsheet-deco {
  1470. height: 1px;
  1471. background: #aaa;
  1472. overflow: hidden;
  1473. }
  1474. .v-tabsheet-hidetabs .v-tabsheet-content {
  1475. border: none;
  1476. }
  1477. .v-tabsheet-hidetabs .v-tabsheet-deco {
  1478. height: 0;
  1479. }
  1480. .v-textfield {
  1481. text-align: left /* Force default alignment */
  1482. }
  1483. .v-textarea {
  1484. }
  1485. .v-textfield-focus,
  1486. .v-textarea-focus {
  1487. }
  1488. input.v-textfield-prompt,
  1489. textarea.v-textarea-prompt {
  1490. color: #999;
  1491. font-style: italic;
  1492. }
  1493. .v-textfield.v-readonly,
  1494. .v-textarea.v-readonly {
  1495. background: transparent;
  1496. border: none;
  1497. }
  1498. .v-richtextarea {
  1499. border: 1px solid #aaa;
  1500. overflow: hidden;
  1501. }
  1502. .v-richtextarea .gwt-RichTextArea {
  1503. background: #fff;
  1504. }
  1505. .v-richtextarea .gwt-RichTextToolbar .gwt-ToggleButton,
  1506. .v-richtextarea .gwt-RichTextToolbar .gwt-PushButton {
  1507. float: left;
  1508. }
  1509. .v-richtextarea .gwt-RichTextToolbar {
  1510. white-space: nowrap;
  1511. }
  1512. .v-richtextarea iframe {
  1513. border: 0;
  1514. }
  1515. /* Disabled by default
  1516. .v-textarea-error,
  1517. .v-textfield-error,
  1518. .v-richtextarea-error iframe.gwt-RichTextArea {
  1519. background: #FFE0E0;
  1520. }
  1521. */
  1522. /* Disabled by default
  1523. .v-textarea-required,
  1524. .v-textfield-required,
  1525. .v-richtextarea-required iframe.gwt-RichTextArea {
  1526. background: #FFE0E0;
  1527. }
  1528. */
  1529. /* Safari focus glow fix */
  1530. .v-sa input:focus,
  1531. .v-sa textarea:focus {
  1532. outline-width: medium;
  1533. }
  1534. .v-tree {
  1535. text-align: left; /* Force default alignment */
  1536. overflow: hidden;
  1537. }
  1538. .v-tree-node {
  1539. background: transparent url(../base/common/img/sprites.png) no-repeat 5px -37px;
  1540. }
  1541. .v-tree-node-expanded {
  1542. background-position: -5px -10px;
  1543. }
  1544. div.v-tree-node-leaf {
  1545. background: transparent;
  1546. }
  1547. .v-tree-node-caption {
  1548. margin-left: 1em;
  1549. }
  1550. .v-tree-node span {
  1551. cursor: pointer;
  1552. }
  1553. .v-tree-node-caption div {
  1554. white-space: nowrap;
  1555. }
  1556. .v-tree-node-caption span,
  1557. .v-tree-node-caption .v-icon {
  1558. vertical-align: middle;
  1559. }
  1560. .v-tree-node-selected span {
  1561. background: #999;
  1562. color: #fff;
  1563. }
  1564. .v-tree-node-caption-drag-top {
  1565. border-top:2px solid green;
  1566. }
  1567. .v-tree-node-caption-drag-bottom {
  1568. border-bottom:2px solid green;
  1569. }
  1570. .v-tree-node-caption-drag-center {
  1571. background-color:green;
  1572. }
  1573. .v-tree-node-children {
  1574. padding-left: 1em;
  1575. }
  1576. /* ie6compatnode is hidden from non ie6 browsers, for ie6
  1577. * uses weird hack to sink all events properly
  1578. */
  1579. .v-tree-node-ie6compatnode {
  1580. display: none;
  1581. }
  1582. /* IMPORTANT keep the offsetWidth of this element the same as the margin-left of v-tree-node-caption */
  1583. .v-ie6 .v-tree-node-ie6compatnode {
  1584. display: inline;
  1585. float: left;
  1586. background: orange;
  1587. margin: 0;
  1588. width: 0.8em;
  1589. height: 0.8em;
  1590. padding: 0.1em;
  1591. filter: alpha(opacity=0);
  1592. }
  1593. .v-ie6 .v-tree-node,
  1594. .v-ie6 .v-tree-node-children {
  1595. clear: left;
  1596. }
  1597. .v-upload-immediate {
  1598. position: relative;
  1599. margin: 0;
  1600. overflow: hidden;
  1601. }
  1602. .v-upload-immediate input {
  1603. opacity: 0;
  1604. filter: alpha(opacity=0);
  1605. z-index: 2;
  1606. position: absolute;
  1607. right: 0;
  1608. height: 21px;
  1609. text-align: right;
  1610. }
  1611. .v-upload-immediate button {
  1612. position: relative;
  1613. left: 0;
  1614. top: 0;
  1615. width: 100%;
  1616. text-align: left;
  1617. }
  1618. .v-window {
  1619. background: #fff;
  1620. }
  1621. .v-window-outerheader {
  1622. cursor: move;
  1623. padding: 0.3em 1em;
  1624. height: 1em;
  1625. }
  1626. .v-window-header {
  1627. font-weight: bold;
  1628. }
  1629. /* A more specific selector to make sure padding isn't so easily overridden */
  1630. div.v-window-header {
  1631. white-space: nowrap;
  1632. text-overflow: ellipsis;
  1633. -ms-text-overflow: ellipsis;
  1634. overflow: hidden;
  1635. padding: 0;
  1636. }
  1637. .v-ie6 .v-window-header {
  1638. width: 100%;
  1639. }
  1640. .v-window-header .v-icon {
  1641. vertical-align: middle; /* This has to be 'middle', not 'bottom', to allow larger icons than 16px */
  1642. }
  1643. /* Partial fix for bug #1106 */
  1644. /* Target Firefox 2 (somehow this will force almost all window borders on top of a Flash object) */
  1645. .v-window-contents, x:-moz-any-link {
  1646. overflow: hidden;
  1647. }
  1648. /* Target Firefox 3 (it doesn't need any trickery, so revert the previous) */
  1649. .v-window-contents, x:-moz-any-link, x:default {
  1650. overflow: visible;
  1651. }
  1652. .v-window-contents > div {
  1653. outline: none;
  1654. }
  1655. .v-window-footer {
  1656. overflow: hidden;
  1657. zoom: 1;
  1658. height: 10px;
  1659. position: relative;
  1660. }
  1661. .v-window-resizebox {
  1662. width: 10px;
  1663. height: 10px;
  1664. cursor: se-resize;
  1665. background: #ddd;
  1666. overflow: hidden;
  1667. position: absolute;
  1668. right: 0;
  1669. }
  1670. .v-window div.v-window-footer-noresize {
  1671. height: 0;
  1672. }
  1673. .v-window-resizebox-disabled {
  1674. cursor: default;
  1675. display: none;
  1676. }
  1677. .v-window-closebox {
  1678. position: absolute;
  1679. top: 0;
  1680. right: 0;
  1681. width: 1em;
  1682. height: 1em;
  1683. background: red;
  1684. cursor: pointer;
  1685. overflow: hidden;
  1686. }
  1687. .v-window-modalitycurtain {
  1688. top: 0;
  1689. left: 0;
  1690. background: #999;
  1691. opacity: 0.5;
  1692. position: fixed;
  1693. width: 100%;
  1694. height: 100%;
  1695. filter: alpha(opacity=50);
  1696. }
  1697. /* IE6 workaround for position:fixed; */
  1698. .v-ie6 .v-window-modalitycurtain {
  1699. position: absolute;
  1700. top: expression(document.documentElement.scrollTop + "px");
  1701. }
  1702. /* min-width for IE6 */
  1703. .v-ie6 .v-window {
  1704. width: 0; /* */
  1705. }
  1706. /* Shadow for window */
  1707. .v-shadow-window {
  1708. position: absolute;
  1709. }
  1710. .v-shadow-window .top-left {
  1711. position: absolute; overflow: hidden;
  1712. top: -10px; left: -15px;
  1713. width: 28px; height: 28px;
  1714. background: transparent url(../base/window/img/shadow/top-left.png);
  1715. }
  1716. .v-shadow-window .top {
  1717. position: absolute; overflow: hidden;
  1718. top: -10px; left: 13px;
  1719. height: 28px;
  1720. right: 13px;
  1721. background: transparent url(../base/window/img/shadow/top.png);
  1722. }
  1723. .v-shadow-window .top-right {
  1724. position: absolute; overflow: hidden;
  1725. top: -10px; right: -15px;
  1726. width: 28px; height: 28px;
  1727. background: transparent url(../base/window/img/shadow/top-right.png);
  1728. }
  1729. .v-shadow-window .left {
  1730. position: absolute; overflow: hidden;
  1731. top: 18px; left: -15px;
  1732. width: 28px;
  1733. bottom: 10px;
  1734. background: transparent url(../base/window/img/shadow/left.png);
  1735. }
  1736. .v-shadow-window .center {
  1737. position: absolute; overflow: hidden;
  1738. top: 18px; left: 13px;
  1739. bottom: 10px; right: 13px;
  1740. background: transparent url(../base/window/img/shadow/center.png);
  1741. }
  1742. .v-shadow-window .right {
  1743. position: absolute; overflow: hidden;
  1744. top: 18px; right: -15px;
  1745. width: 28px;
  1746. bottom: 10px;
  1747. background: transparent url(../base/window/img/shadow/right.png);
  1748. }
  1749. .v-shadow-window .bottom-left {
  1750. position: absolute; overflow: hidden;
  1751. bottom: -18px; left: -15px;
  1752. width: 28px; height: 28px;
  1753. background: transparent url(../base/window/img/shadow/bottom-left.png);
  1754. }
  1755. .v-shadow-window .bottom {
  1756. position: absolute; overflow: hidden;
  1757. bottom: -18px; left: 13px;
  1758. right: 13px; height: 28px;
  1759. background: transparent url(../base/window/img/shadow/bottom.png);
  1760. }
  1761. .v-shadow-window .bottom-right {
  1762. position: absolute; overflow: hidden;
  1763. bottom: -18px; right: -15px;
  1764. width: 28px; height: 28px;
  1765. background: transparent url(../base/window/img/shadow/bottom-right.png);
  1766. }
  1767. /* For IE6 (no transparent png's, we use a blur filter) */
  1768. .v-ie6 .v-shadow-window * {
  1769. display: none;
  1770. }
  1771. .v-ie6 .v-shadow-window {
  1772. background: #000;
  1773. filter: progid:DXImageTransform.Microsoft.Blur(pixelRadius=5) alpha(opacity=20);
  1774. margin-top: 2px;
  1775. margin-left: 2px;
  1776. }
  1777. /* Automatically compiled css file from subdirectories. */
  1778. .v-absolutelayout-wrapper {
  1779. position: absolute;
  1780. overflow:hidden;
  1781. }
  1782. .v-accordion-item {
  1783. background-color: #fff;
  1784. }
  1785. .v-accordion-item-caption {
  1786. height: 31px;
  1787. background: #edf0f0 url(tabsheet/img/tab-bg.png);
  1788. font-size: 15px;
  1789. color: #656d73;
  1790. border-top: 1px solid #c8cccd;
  1791. }
  1792. .v-accordion-item-caption .v-caption {
  1793. padding: 7px 0 6px 18px;
  1794. }
  1795. .v-accordion-item-open .v-accordion-item-caption {
  1796. color: #3b4b57;
  1797. background: #d5dee2 url(accordion/img/selected-bg.png);
  1798. border-top-color: #cbd7de;
  1799. border-bottom-color: #bfc9d4;
  1800. text-shadow: #fafafa 0 1px 0;
  1801. border-bottom: 1px solid #c8cccd;
  1802. }
  1803. .v-button:focus {
  1804. border-color: #4897dc;
  1805. outline: none;
  1806. }
  1807. .v-button:active,
  1808. .v-button.v-pressed {
  1809. background-position: left bottom;
  1810. border-color: #babfc0;
  1811. border-top-color: #a5abac;
  1812. }
  1813. .v-button,
  1814. .v-disabled.v-button {
  1815. font-size: 13px;
  1816. border: 1px solid #babfc0;
  1817. border-bottom-color: #a5abac;
  1818. background: #fff url(button/img/bg.png);
  1819. -webkit-background-origin: padding;
  1820. -moz-background-origin: padding;
  1821. padding: 3px 15px;
  1822. -webkit-border-radius: 10px;
  1823. -moz-border-radius: 10px;
  1824. border-radius: 10px;
  1825. font-size: 12px;
  1826. line-height: 16px;
  1827. min-height: 16px;
  1828. }
  1829. .v-button-caption {
  1830. color: #464f52;
  1831. }
  1832. /* Small style */
  1833. .v-button-small,
  1834. .v-disabled.v-button-small {
  1835. font-size: 11px;
  1836. line-height: 14px;
  1837. padding: 1px 15px;
  1838. min-height: 14px;
  1839. }
  1840. /* Link style */
  1841. .v-button-link,
  1842. .v-disabled.v-button-link {
  1843. border: none;
  1844. background: transparent;
  1845. padding: 0;
  1846. font-size: 13px;
  1847. }
  1848. .v-button-link:focus {
  1849. outline: 1px dotted #4897dc;
  1850. }
  1851. /* Checkbox styles */
  1852. .v-checkbox .v-errorindicator {
  1853. padding-left: 10px;
  1854. }
  1855. .v-ie6 .v-checkbox .v-errorindicator {
  1856. padding-right: 4px;
  1857. }
  1858. .v-ie7 .v-checkbox .v-errorindicator {
  1859. padding-right: 7px;
  1860. }
  1861. .v-ie6 .v-button .v-errorindicator,
  1862. .v-ie7 .v-button .v-errorindicator {
  1863. padding-right: 5px;
  1864. }
  1865. .v-captionwrapper {
  1866. margin: 0.3em 0 0 0;
  1867. }
  1868. .v-errorindicator {
  1869. width: 12px;
  1870. height: 16px;
  1871. background: transparent url(icons/16/error.png) no-repeat top right;
  1872. }
  1873. .v-ie6 .v-errorindicator {
  1874. /* gif for transparency */
  1875. background-image: url(icons/16/error.gif);
  1876. }
  1877. .v-ie7 .v-errorindicator {
  1878. margin-left: -3px;
  1879. }
  1880. .v-generated-body {
  1881. background: #e9eced;
  1882. }
  1883. .v-app {
  1884. background: #e9eced;
  1885. font-family: "Trebuchet MS", geneva, helvetica, arial, tahoma, verdana, sans-serif;
  1886. color: #464f52;
  1887. font-size: 13px;
  1888. line-height: 18px;
  1889. }
  1890. /* Global font styles */
  1891. .v-window,
  1892. .v-popupview-popup,
  1893. .v-app input,
  1894. .v-app select,
  1895. .v-app button,
  1896. .v-app textarea,
  1897. .v-window input,
  1898. .v-window select,
  1899. .v-window button,
  1900. .v-window textarea,
  1901. .v-popupview-popup input,
  1902. .v-popupview-popup select,
  1903. .v-popupview-popup button,
  1904. .v-popupview-popup textarea {
  1905. font-family: "Trebuchet MS", geneva, helvetica, arial, tahoma, verdana, sans-serif;
  1906. color: #464f52;
  1907. font-size: 13px;
  1908. }
  1909. .v-app select,
  1910. .v-window select {
  1911. padding: 0;
  1912. }
  1913. /* Custom tooltip */
  1914. .v-tooltip {
  1915. background-color: #fffcdd;
  1916. border: 1px solid #b8b295;
  1917. border-top-color: #d5d2c1;
  1918. border-left-color: #d5d2c1;
  1919. font-size: 11px;
  1920. font-family: arial, helvetica, tahoma, verdana, sans-serif;
  1921. color: #5d5444;
  1922. }
  1923. .v-tooltip-text {
  1924. padding: 2px 4px;
  1925. border: none;
  1926. border-top: 1px solid #fffef5;
  1927. border-bottom: 1px solid #fbf8d9;
  1928. }
  1929. .v-tooltip .v-errormessage {
  1930. padding: 3px 4px 3px 4px;
  1931. background: #ffecc6;
  1932. color: #b74100;
  1933. border: none;
  1934. border-top: 1px solid #fff3dc;
  1935. border-bottom: 1px solid #ead7b1;
  1936. }
  1937. .v-tooltip .v-errormessage h2 {
  1938. font-size: 16px;
  1939. font-weight: normal;
  1940. color: #ab3101;
  1941. margin: 2px 0 8px 0;
  1942. }
  1943. .v-tooltip .v-errormessage h3 {
  1944. font-size: 13px;
  1945. font-weight: bold;
  1946. margin: 1px 0 4px 0;
  1947. }
  1948. .v-contextmenu {
  1949. background: #e9eced url(tabsheet/img/tab-bg.png);
  1950. font-family: "Trebuchet MS", geneva, helvetica, arial, tahoma, verdana, sans-serif;
  1951. background-color: #f6f7f7;
  1952. color: #464f52;
  1953. font-size: 12px;
  1954. line-height: 14px;
  1955. }
  1956. .v-contextmenu .gwt-MenuBar {
  1957. border-right: 1px solid #c6cbcc;
  1958. border-bottom: 1px solid #c6cbcc;
  1959. border-top: 1px solid #d0d4d5;
  1960. border-left: 1px solid #d0d4d5;
  1961. }
  1962. .v-contextmenu .gwt-MenuItem {
  1963. padding: 2px 0;
  1964. }
  1965. .v-contextmenu .gwt-MenuItem div {
  1966. padding: 1px 20px 1px 8px;
  1967. }
  1968. .v-contextmenu .gwt-MenuItem-selected div {
  1969. color: #fff;
  1970. background: #5daee8;
  1971. }
  1972. .v-contextmenu .gwt-MenuItem img {
  1973. margin-right: 10px;
  1974. }
  1975. .v-datefield-button {
  1976. font-size:13px;
  1977. width: 22px;
  1978. height: 24px;
  1979. padding: 0;
  1980. overflow: hidden;
  1981. border: none;
  1982. background: transparent url(datefield/img/open-button.png) no-repeat right 0;
  1983. vertical-align: top;
  1984. }
  1985. .v-datefield-popup {
  1986. font-family: "Trebuchet MS", geneva, helvetica, arial, tahoma, verdana, sans-serif;
  1987. color: #464f52;
  1988. font-size: 12px;
  1989. background: #f6f7f7;
  1990. border: 1px solid #b6bbbc;
  1991. padding: 6px;
  1992. }
  1993. .v-datefield-calendarpanel {
  1994. width: 19em;
  1995. font-size: 12px;
  1996. }
  1997. .v-datefield-popup .v-datefield-calendarpanel {
  1998. width: 16em;
  1999. }
  2000. .v-datefield-calendarpanel td {
  2001. text-align: right;
  2002. }
  2003. .v-datefield-calendarpanel td span {
  2004. display: block;
  2005. }
  2006. .v-datefield-calendarpanel-header {
  2007. height: 30px;
  2008. }
  2009. .v-datefield-calendarpanel-header,
  2010. .v-datefield-calendarpanel strong {
  2011. font-size: 13px;
  2012. }
  2013. .v-datefield-popup .v-datefield-calendarpanel-header,
  2014. .v-datefield-popup .v-datefield-calendarpanel strong {
  2015. font-size: 12px;
  2016. }
  2017. .v-datefield-calendarpanel-month {
  2018. font-weight: bold;
  2019. text-shadow: #ffffff 2px 2px 0;
  2020. }
  2021. /* Year buttons */
  2022. .v-datefield-calendarpanel .v-button-prevyear,
  2023. .v-datefield-calendarpanel .v-button-nextyear {
  2024. display: block;
  2025. width: 16px;
  2026. height: 16px;
  2027. border: none;
  2028. padding: 0;
  2029. background: transparent url(datefield/img/prevyear.png) no-repeat;
  2030. text-indent: -90000px;
  2031. margin: 0 auto;
  2032. }
  2033. .v-datefield-calendarpanel .v-button-nextyear {
  2034. background: transparent url(datefield/img/nextyear.png) no-repeat;
  2035. }
  2036. .v-datefield-calendarpanel .v-button-prevyear:hover,
  2037. .v-datefield-calendarpanel .v-button-nextyear:hover {
  2038. background-position: left bottom;
  2039. }
  2040. /* Month buttons */
  2041. .v-datefield-calendarpanel .v-button-prevmonth,
  2042. .v-datefield-calendarpanel .v-button-nextmonth {
  2043. display: block;
  2044. width: 11px;
  2045. height: 16px;
  2046. border: none;
  2047. padding: 0;
  2048. background: transparent url(datefield/img/prevmonth.png) no-repeat;
  2049. text-indent: -90000px;
  2050. margin: 0 auto;
  2051. }
  2052. .v-datefield-calendarpanel .v-button-nextmonth {
  2053. background: transparent url(datefield/img/nextmonth.png) no-repeat;
  2054. }
  2055. .v-datefield-calendarpanel .v-button-prevmonth:hover,
  2056. .v-datefield-calendarpanel .v-button-nextmonth:hover {
  2057. background-position: left bottom;
  2058. }
  2059. .v-datefield-calendarpanel strong {
  2060. color: #ee5311;
  2061. display: block;
  2062. width: 20px;
  2063. }
  2064. .v-datefield-calendarpanel-day,
  2065. .v-datefield-calendarpanel-day-today {
  2066. padding: 1px 3px;
  2067. width: 14px;
  2068. height: 16px;
  2069. }
  2070. .v-datefield-calendarpanel-day-today {
  2071. border: 1px solid #429ce9;
  2072. width: 12px;
  2073. height: 14px
  2074. }
  2075. .v-datefield-calendarpanel-day-entry {
  2076. color: #6a98b5;
  2077. }
  2078. .v-datefield-calendarpanel-day-disabled {
  2079. font-weight: normal;
  2080. color: #dddddd;
  2081. }
  2082. .v-datefield-calendarpanel-day-entry.v-datefield-calendarpanel-day-disabled {
  2083. color: #afd6f8;
  2084. }
  2085. .v-datefield-calendarpanel-day-selected {
  2086. font-weight: bold;
  2087. width: 14px;
  2088. height: 16px;
  2089. color: #fff;
  2090. padding: 1px 3px;
  2091. background: transparent url(datefield/img/selected-bg.png) no-repeat 50% 50%;
  2092. border: none;
  2093. }
  2094. .v-datefield-time {
  2095. font-size: 11px;
  2096. }
  2097. .v-datefield-time .v-select {
  2098. font-size: 10px;
  2099. padding: 0;
  2100. margin: 0;
  2101. }
  2102. .v-datefield-rendererror .v-textfield {
  2103. background: #ff9999;
  2104. }
  2105. /* IE specific styles */
  2106. .v-ie7 .v-datefield-button {
  2107. background-position: right 1px;
  2108. height: 25px;
  2109. margin: 0;
  2110. }
  2111. .v-formlayout-cell .v-errorindicator {
  2112. width: 10px;
  2113. height: 16px;
  2114. background: transparent url(icons/16/error.png) no-repeat top right;
  2115. }
  2116. .v-formlayout-captioncell {
  2117. text-align:right;
  2118. white-space: nowrap;
  2119. }
  2120. .v-formlayout-spacing .v-formlayout-row .v-formlayout-captioncell,
  2121. .v-formlayout-spacing .v-formlayout-row .v-formlayout-contentcell,
  2122. .v-formlayout-spacing .v-formlayout-row .v-formlayout-errorcell {
  2123. padding-top: 8px;
  2124. }
  2125. .v-formlayout-margin-top .v-formlayout-firstrow .v-formlayout-captioncell,
  2126. .v-formlayout-margin-top .v-formlayout-firstrow .v-formlayout-contentcell,
  2127. .v-formlayout-margin-top .v-formlayout-firstrow .v-formlayout-errorcell {
  2128. padding-top: 15px;
  2129. }
  2130. .v-formlayout-margin-bottom .v-formlayout-lastrow .v-formlayout-captioncell,
  2131. .v-formlayout-margin-bottom .v-formlayout-lastrow .v-formlayout-contentcell,
  2132. .v-formlayout-margin-bottom .v-formlayout-lastrow .v-formlayout-errorcell {
  2133. padding-bottom: 15px;
  2134. }
  2135. .v-formlayout-margin-left .v-formlayout-captioncell {
  2136. padding-left: 18px;
  2137. }
  2138. .v-formlayout-margin-right .v-formlayout-contentcell {
  2139. padding-right: 18px;
  2140. }
  2141. /* form */
  2142. .v-form-errormessage {
  2143. background: transparent url(icons/16/error.png) no-repeat top left;
  2144. padding-left: 20px;
  2145. margin-bottom: 5px;
  2146. margin-top: 5px;
  2147. min-height: 20px;
  2148. }
  2149. .v-ie6 .v-form-errormessage {
  2150. height: 20px
  2151. }
  2152. .v-form fieldset {
  2153. border: none;
  2154. border-top: 1px solid #babfc0;
  2155. }
  2156. .v-form-nocaption fieldset {
  2157. border: none;
  2158. }
  2159. .v-form-nocaption legend {
  2160. display: none;
  2161. }
  2162. .v-form legend {
  2163. margin: 0;
  2164. padding: 0 4px 0.3em 4px;
  2165. font-weight: bold;
  2166. color: #464f52;
  2167. }
  2168. .v-gridlayout-margin-top {
  2169. padding-top: 15px;
  2170. }
  2171. .v-gridlayout-margin-bottom {
  2172. padding-bottom: 15px;
  2173. }
  2174. .v-gridlayout-margin-left {
  2175. padding-left: 18px;
  2176. }
  2177. .v-gridlayout-margin-right {
  2178. padding-right: 18px;
  2179. }
  2180. .v-gridlayout-spacing-on {
  2181. padding-left: 8px;
  2182. padding-top: 8px;
  2183. }
  2184. .v-link a {
  2185. color: #464f52;
  2186. }
  2187. .v-menubar {
  2188. color: #464f52;
  2189. border-left: 1px solid #c6cbcc;
  2190. }
  2191. .v-menubar .v-menubar-menuitem {
  2192. padding: 1px 10px;
  2193. border: 1px solid #c6cbcc;
  2194. border-left: none;
  2195. height: 18px;
  2196. line-height: 18x;
  2197. }
  2198. .v-menubar-menuitem-selected {
  2199. color: #fff;
  2200. background: #5daee8;
  2201. }
  2202. .v-menubar-submenu {
  2203. background: #e9eced url(tabsheet/img/tab-bg.png);
  2204. font-family: "Trebuchet MS", geneva, helvetica, arial, tahoma, verdana, sans-serif;
  2205. color: #464f52;
  2206. font-size: 12px;
  2207. line-height: 14px;
  2208. border-right: 1px solid #c6cbcc;
  2209. border-bottom: 1px solid #c6cbcc;
  2210. border-top: 1px solid #d0d4d5;
  2211. border-left: 1px solid #d0d4d5;
  2212. }
  2213. .v-menubar-submenu .v-menubar-menuitem {
  2214. padding-top: 1px;
  2215. padding-bottom: 1px;
  2216. line-height: 16px;
  2217. padding-left: 10px;
  2218. }
  2219. .v-menubar-submenu .v-menubar-menuitem-caption * {
  2220. vertical-align: middle;
  2221. }
  2222. .v-Notification {
  2223. font-family: "Trebuchet MS", geneva, helvetica, arial, tahoma, verdana, sans-serif;
  2224. background-color: #818e92;
  2225. color: #ffffff;
  2226. padding: 9px 12px;
  2227. cursor: pointer;
  2228. -moz-border-radius: 3px;
  2229. -webkit-border-radius: 3px;
  2230. border-radius: 3px;
  2231. overflow: hidden;
  2232. }
  2233. .v-Notification h1,
  2234. .v-Notification p,
  2235. .v-Notification-error h1,
  2236. .v-Notification-error p,
  2237. .v-Notification-warning h1,
  2238. .v-Notification-warning p {
  2239. display: inline;
  2240. font-weight: normal;
  2241. margin: 0 10px 0 0;
  2242. }
  2243. .v-Notification-warning {
  2244. background: #fff1e4;
  2245. color: #dd3400;
  2246. border: 2px solid #ffaa90;
  2247. -moz-border-radius: 5px;
  2248. -webkit-border-radius: 5px;
  2249. border-radius: 5px;
  2250. opacity: 1;
  2251. }
  2252. .v-Notification-error {
  2253. background: #f23d00 url(notification/img/close-error.png) no-repeat right 5px;
  2254. padding-right: 30px;
  2255. border: 3px solid #c30000;
  2256. -moz-border-radius: 6px;
  2257. -webkit-border-radius: 6px;
  2258. border-radius: 6px;
  2259. }
  2260. .v-Notification-tray {
  2261. background: #575e60;
  2262. padding: 0.5em;
  2263. margin: 0 5px 5px 0;
  2264. }
  2265. .v-Notification-tray h1 {
  2266. display: block;
  2267. font-weight: bold;
  2268. font-size: 0.9em;
  2269. line-height: 1.1;
  2270. background: #3b4245;
  2271. padding: 4px 10px;
  2272. margin: 0;
  2273. -moz-border-radius: 3px;
  2274. -webkit-border-radius: 3px;
  2275. border-radius: 3px;
  2276. }
  2277. .v-Notification-tray p {
  2278. display: block;
  2279. font-size: 0.9em;
  2280. line-height: 1.1;
  2281. margin: 8px 10px 5px 10px;
  2282. color: #e4e7ea;
  2283. }
  2284. .v-Notification-system {
  2285. background-color: #ff0a0a;
  2286. }
  2287. .v-orderedlayout-margin-top,
  2288. .v-horizontallayout-margin-top,
  2289. .v-verticallayout-margin-top {
  2290. padding-top: 15px;
  2291. }
  2292. .v-orderedlayout-margin-right,
  2293. .v-horizontallayout-margin-right,
  2294. .v-verticallayout-margin-right {
  2295. padding-right: 18px;
  2296. }
  2297. .v-orderedlayout-margin-bottom,
  2298. .v-horizontallayout-margin-bottom,
  2299. .v-verticallayout-margin-bottom {
  2300. padding-bottom: 15px;
  2301. }
  2302. .v-orderedlayout-margin-left,
  2303. .v-horizontallayout-margin-left,
  2304. .v-verticallayout-margin-left {
  2305. padding-left: 18px;
  2306. }
  2307. .v-orderedlayout-spacing-on,
  2308. .v-horizontallayout-spacing-on,
  2309. .v-verticallayout-spacing-on {
  2310. padding-top: 8px;
  2311. padding-left: 8px;
  2312. }
  2313. .v-panel {
  2314. background: transparent url(panel/img/top-left.png) no-repeat;
  2315. }
  2316. .v-panel-caption .v-errorindicator {
  2317. padding-right: 20px;
  2318. background: transparent url(icons/16/error.png) no-repeat bottom center;
  2319. }
  2320. .v-panel-caption,
  2321. .v-panel-caption-light {
  2322. font-size: 18px;
  2323. line-height: 18px;
  2324. font-weight: normal;
  2325. letter-spacing: -0.03em;
  2326. color: #f14c1a;
  2327. height: 18px;
  2328. padding: 15px 18px 14px 8px;
  2329. margin-left: 10px;
  2330. background: transparent url(panel/img/top-right.png) no-repeat right top;
  2331. }
  2332. .v-panel-nocaption {
  2333. height: 9px;
  2334. margin-left: 10px;
  2335. background: transparent url(panel/img/top-right.png) no-repeat right top;
  2336. }
  2337. .v-panel-content {
  2338. border: 1px solid #babfc0;
  2339. border-bottom: 1px solid #dee2e3;
  2340. background-color: #fff;
  2341. }
  2342. .v-panel-deco {
  2343. height: 9px;
  2344. background: transparent url(panel/img/bottom-right.png) repeat-x right top;
  2345. margin-left: 9px;
  2346. }
  2347. .v-panel-deco:before {
  2348. display: block;
  2349. content: "";
  2350. width: 9px;
  2351. height: 9px;
  2352. margin-left: -9px;
  2353. background: transparent url(panel/img/bottom-left.png) no-repeat;
  2354. }
  2355. /* Light panel style */
  2356. .v-panel-light,
  2357. .v-panel-caption-light {
  2358. background: transparent;
  2359. }
  2360. .v-panel-nocaption-light {
  2361. background: transparent;
  2362. height: 0;
  2363. margin: 0;
  2364. }
  2365. .v-panel-content-light {
  2366. border: none;
  2367. border-top: 1px solid #babfc0;
  2368. background: transparent;
  2369. }
  2370. .v-panel-deco-light {
  2371. height: 0;
  2372. overflow: hidden;
  2373. }
  2374. /* IE specific rules */
  2375. .v-ie6 .v-panel {
  2376. background: transparent;
  2377. }
  2378. .v-ie6 .v-panel-caption {
  2379. border: 1px solid #babfc0;
  2380. border-bottom: none;
  2381. background: #fff;
  2382. margin: 0;
  2383. padding-left: 18px
  2384. }
  2385. .v-ie6 .v-panel-nocaption {
  2386. border: none;
  2387. background: transparent;
  2388. margin: 0;
  2389. height: 0;
  2390. }
  2391. .v-ie6 .v-panel-caption-light {
  2392. border: none;
  2393. background: transparent;
  2394. }
  2395. .v-ie6 .v-panel-content,
  2396. .v-ie7 .v-panel-content,
  2397. .v-ie8 .v-panel-content {
  2398. border-bottom: 1px solid #babfc0;
  2399. }
  2400. .v-ie6 .v-panel-content-light,
  2401. .v-ie7 .v-panel-content-light,
  2402. .v-ie8 .v-panel-content-light {
  2403. border-bottom: none;
  2404. }
  2405. .v-ie6 .v-panel-deco,
  2406. .v-ie7 .v-panel-deco,
  2407. .v-ie8 .v-panel-deco {
  2408. height: 0;
  2409. overflow: hidden;
  2410. }
  2411. .v-popupview {
  2412. background: transparent;
  2413. }
  2414. .v-popupview-popup {
  2415. border: 1px solid #babfc0;
  2416. border-bottom: 1px solid #dee2e3;
  2417. background: #fff;
  2418. padding: 3px;
  2419. }
  2420. .v-progressindicator-wrapper {
  2421. background: #dfe2e4 url(progressindicator/img/base.gif) repeat-x;
  2422. border: 1px solid #b6bbbc;
  2423. }
  2424. .v-disabled .v-progressindicator-wrapper {
  2425. background-image: url(progressindicator/img/disabled.gif);
  2426. }
  2427. .v-progressindicator-indicator {
  2428. background: #f7f9f9 url(progressindicator/img/progress.png);
  2429. }
  2430. .v-progressindicator-indicator {
  2431. background: #f7f9f9 url(progressindicator/img/progress.png);
  2432. }
  2433. .v-progressindicator-indeterminate {
  2434. background: #fff url(../base/common/img/ajax-loader-medium.gif) no-repeat 50%;
  2435. }
  2436. .v-progressindicator-indeterminate-disabled {
  2437. background: #dfe2e4;
  2438. }
  2439. .v-select-select {
  2440. font-size: 13px;
  2441. }
  2442. /* Twincol style */
  2443. .v-select-twincol-options,
  2444. .v-select-twincol-selections {
  2445. font-size: 13px;
  2446. }
  2447. .v-select-twincol-buttons {
  2448. padding: 2px; /* does not work in first render in FF ? */
  2449. }
  2450. /** Filterselect aka ComboBox styles */
  2451. .v-filterselect {
  2452. height: 23px;
  2453. background: transparent url(select/img/bg-left-filter.png) no-repeat;
  2454. padding-left: 4px;
  2455. }
  2456. .v-app .v-filterselect .v-filterselect-input,
  2457. .v-window .v-filterselect .v-filterselect-input,
  2458. .v-popupview-popup .v-filterselect .v-filterselect-input {
  2459. background: transparent url(select/img/bg-center-filter.png) no-repeat 1px 0;
  2460. border: none;
  2461. height: 20px;
  2462. margin: 0;
  2463. padding: 3px 0 0 2px;
  2464. font-size: 13px;
  2465. }
  2466. .v-filterselect-prompt .v-filterselect-input {
  2467. font-style: normal;
  2468. }
  2469. .v-filterselect-input:focus {
  2470. /* remove safari/mac outline from this element */
  2471. outline: none;
  2472. }
  2473. .v-filterselect-focus {
  2474. outline: 1px solid #5daee8;
  2475. outline-offset: -1px;
  2476. }
  2477. .v-sa .v-filterselect-focus {
  2478. /* place safari focus outline around the whole thing */
  2479. outline: 5px auto -webkit-focus-ring-color;
  2480. outline-offset: -4px;
  2481. }
  2482. .v-filterselect-button {
  2483. width: 25px;
  2484. height: 23px;
  2485. background: transparent url(select/img/bg-right-filter.png);
  2486. }
  2487. .v-filterselect-button:hover {
  2488. background-position: bottom left;
  2489. }
  2490. .v-disabled .v-filterselect-button:hover,
  2491. .v-readonly .v-filterselect-button:hover {
  2492. background-position: top left;
  2493. }
  2494. .v-filterselect.v-readonly .v-filterselect-input {
  2495. background: transparent;
  2496. }
  2497. .v-filterselect-suggestpopup {
  2498. background: #f6f7f7;
  2499. border: 1px solid #b6bbbc;
  2500. font-family: "Trebuchet MS", geneva, helvetica, arial, tahoma, verdana, sans-serif;
  2501. color: #464f52;
  2502. font-size: 12px;
  2503. line-height: 18px;
  2504. margin-top: -1px;
  2505. }
  2506. .v-filterselect-suggestmenu .gwt-MenuItem {
  2507. padding: 1px 6px;
  2508. cursor: pointer;
  2509. height: 18px;
  2510. }
  2511. .v-ff .v-filterselect-suggestmenu .gwt-MenuItem {
  2512. height: 20px;
  2513. }
  2514. .v-filterselect-suggestmenu .gwt-MenuItem .v-icon {
  2515. margin-right: 3px;
  2516. }
  2517. .v-filterselect-suggestmenu .gwt-MenuItem-selected {
  2518. background: #5daee8;
  2519. color: #fff;
  2520. }
  2521. .v-filterselect-nextpage,
  2522. .v-filterselect-nextpage-off,
  2523. .v-filterselect-prevpage-off,
  2524. .v-filterselect-prevpage {
  2525. height: 11px;
  2526. width:100%;
  2527. background: transparent url(select/img/button-bg.png) no-repeat 50% 0;
  2528. margin: 2px 0 0 0;
  2529. }
  2530. .v-filterselect-prevpage,
  2531. .v-filterselect-prevpage-off {
  2532. background-position: 50% -1px;
  2533. margin: 0 0 2px 0;
  2534. }
  2535. .v-filterselect-prevpage:hover {
  2536. background-position: 50% bottom;
  2537. }
  2538. .v-filterselect-nextpage:hover {
  2539. background-position: 50% -12px;
  2540. }
  2541. .v-filterselect-nextpage span,
  2542. .v-filterselect-nextpage-off span,
  2543. .v-filterselect-prevpage-off span,
  2544. .v-filterselect-prevpage span {
  2545. display: block;
  2546. height: 12px;
  2547. width:100%;
  2548. background: transparent url(select/img/arrow-up.png) no-repeat 50% 40%;
  2549. text-indent: -90000px;
  2550. cursor: pointer;
  2551. overflow: hidden;
  2552. }
  2553. .v-filterselect-nextpage span,
  2554. .v-filterselect-nextpage-off span {
  2555. background: transparent url(select/img/arrow-down.png) no-repeat 50% 60%;
  2556. }
  2557. .v-filterselect-status {
  2558. font-size: 11px;
  2559. line-height: 11px;
  2560. width: 100%;
  2561. padding: 4px 0px;
  2562. height: 11px;
  2563. border-top: 1px solid #b6bbbc;
  2564. }
  2565. /* Error styles (disabled by default)
  2566. ----------------------------------
  2567. .v-filterselect-error {
  2568. background-image: url(select/img/bg-left-filter-error.png);
  2569. }
  2570. .v-filterselect-error .v-filterselect-input {
  2571. background-image: url(select/img/bg-center-filter-error.png);
  2572. }
  2573. .v-filterselect-error .v-filterselect-button {
  2574. background-image: url(select/img/bg-right-filter-error.png);
  2575. }
  2576. .v-select-error .v-select-option,
  2577. .v-select-error .v-select-select,
  2578. .v-select-error .v-select-twincol-selections,
  2579. .v-select-error .v-select-twincol-options {
  2580. background: #FFE0E0;
  2581. }
  2582. */
  2583. /* Required field styles (disabled by default)
  2584. --------------------------------------------
  2585. .v-select-required .v-select-option,
  2586. .v-select-required .v-select-select,
  2587. .v-select-required .v-select-twincol-selections,
  2588. .v-select-required .v-select-twincol-options {
  2589. background: #FFE0E0;
  2590. }
  2591. */
  2592. .v-shadow {
  2593. position: absolute;
  2594. }
  2595. .v-shadow .top-left {
  2596. position: absolute; overflow: hidden;
  2597. top: -3px; left: -4px;
  2598. width: 8px; height: 8px;
  2599. background: transparent url(shadow/img/top-left.png);
  2600. }
  2601. .v-shadow .top {
  2602. position: absolute; overflow: hidden;
  2603. top: -3px; left: 4px;
  2604. height: 8px; right: 4px;
  2605. background: transparent url(shadow/img/top.png);
  2606. }
  2607. .v-shadow .top-right {
  2608. position: absolute; overflow: hidden;
  2609. top: -3px; right: -4px;
  2610. width: 8px; height: 8px;
  2611. background: transparent url(shadow/img/top-right.png);
  2612. }
  2613. .v-shadow .left {
  2614. position: absolute; overflow: hidden;
  2615. top: 5px; left: -4px;
  2616. width: 8px;
  2617. bottom: 3px;
  2618. background: transparent url(shadow/img/left.png);
  2619. }
  2620. .v-shadow .center {
  2621. position: absolute; overflow: hidden;
  2622. top: 5px; left: 4px;
  2623. bottom: 3px; right: 4px;
  2624. background: transparent url(shadow/img/center.png);
  2625. }
  2626. .v-shadow .right {
  2627. position: absolute; overflow: hidden;
  2628. top: 5px; right: -4px;
  2629. width: 8px;
  2630. bottom: 3px;
  2631. background: transparent url(shadow/img/right.png);
  2632. }
  2633. .v-shadow .bottom-left {
  2634. position: absolute; overflow: hidden;
  2635. bottom: -5px; left: -4px;
  2636. width: 8px; height: 8px;
  2637. background: transparent url(shadow/img/bottom-left.png);
  2638. }
  2639. .v-shadow .bottom {
  2640. position: absolute; overflow: hidden;
  2641. bottom: -5px; left: 4px;
  2642. right: 4px; height: 8px;
  2643. background: transparent url(shadow/img/bottom.png);
  2644. }
  2645. .v-shadow .bottom-right {
  2646. position: absolute; overflow: hidden;
  2647. bottom: -5px; right: -4px;
  2648. width: 8px; height: 8px;
  2649. background: transparent url(shadow/img/bottom-right.png);
  2650. }
  2651. .v-slider {
  2652. border-top: 1px solid #cccfd0;
  2653. border-bottom: 1px solid #cccfd0;
  2654. margin: 5px 0;
  2655. }
  2656. .v-slider-base {
  2657. /* changing the borders will require adjustments to ISlider.java */
  2658. height: 2px;
  2659. background: #f3f3f4;
  2660. border-top: 1px solid #cbcdce;
  2661. border-left: 1px solid #cccfd0;
  2662. border-right: 1px solid #cccfd0;
  2663. }
  2664. .v-slider-handle {
  2665. background: transparent url(slider/img/handle-horizontal.png);
  2666. width: 12px;
  2667. height: 12px;
  2668. margin-top: -5px;
  2669. cursor: pointer;
  2670. }
  2671. .v-slider-handle:hover {
  2672. background-position: left bottom;
  2673. }
  2674. .v-slider-scrollbar .v-slider-handle,
  2675. .v-slider-scrollbar.v-slider-vertical .v-slider-handle {
  2676. background: #ffffff;
  2677. border: 1px solid #cccfd0;
  2678. border-radius: 6px;
  2679. -moz-border-radius: 6px;
  2680. -webkit-border-radius: 6px;
  2681. }
  2682. .v-slider-vertical {
  2683. width: 3px;
  2684. margin: 0 5px;
  2685. border: none;
  2686. border-left: 1px solid #cccfd0;
  2687. border-right: 1px solid #cccfd0;
  2688. }
  2689. .v-slider-vertical .v-slider-base {
  2690. width: 2px;
  2691. border-left: 1px solid #cbcdce;
  2692. border-right: none;
  2693. background: #f3f3f4;
  2694. border-top: 1px solid #cccfd0;
  2695. border-bottom: 1px solid #cccfd0;
  2696. }
  2697. .v-slider-vertical .v-slider-handle {
  2698. background: transparent url(slider/img/handle-vertical.png);
  2699. width: 12px;
  2700. height: 12px;
  2701. margin-left: -5px;
  2702. }
  2703. .v-slider-vertical .v-slider-handle-active {
  2704. background-position: left bottom;
  2705. }
  2706. /* Disabled by default
  2707. .v-slider-error .v-slider-base {
  2708. background:transparent;
  2709. background-color: #FFE0E0;
  2710. }
  2711. */
  2712. /* Disabled by default
  2713. .v-slider-required .v-slider-base {
  2714. background:transparent;
  2715. background-color: #FFE0E0;
  2716. }
  2717. */
  2718. /* IE specific styles */
  2719. .v-ie6 .v-slider,
  2720. .v-ie6 .v-slider-vertical {
  2721. margin: 0;
  2722. }
  2723. .v-ie6 .v-slider .v-slider-handle {
  2724. margin: -1px 0;
  2725. }
  2726. .v-ie6 .v-slider-vertical .v-slider-handle {
  2727. margin: 0 -1px;
  2728. }
  2729. .v-splitpanel-horizontal, .v-splitpanel-vertical {
  2730. overflow: hidden;
  2731. }
  2732. .v-splitpanel-horizontal .v-splitpanel-hsplitter {
  2733. width: 6px;
  2734. font-size: 1px; /* for IE6 */
  2735. }
  2736. .v-splitpanel-horizontal .v-splitpanel-hsplitter div {
  2737. width: 6px;
  2738. font-size: 1px; /* for IE6 */
  2739. position: absolute;
  2740. top: 0;
  2741. bottom: 0;
  2742. background: #ccd2d0 url(splitpanel/img/bg_hor.png);
  2743. border: 1px solid #b6bbbc;
  2744. cursor: e-resize;
  2745. margin: 0 -1px;
  2746. }
  2747. .v-splitpanel-vertical .v-splitpanel-vsplitter {
  2748. height: 6px;
  2749. font-size: 1px; /* for IE6 */
  2750. }
  2751. .v-splitpanel-vertical .v-splitpanel-vsplitter div {
  2752. height: 6px;
  2753. font-size: 1px; /* for IE6 */
  2754. background: #ccd2d0 url(splitpanel/img/bg_ver.png);
  2755. border: 1px solid #b6bbbc;
  2756. cursor: n-resize;
  2757. margin: -1px 0;
  2758. }
  2759. /* IE specific styles */
  2760. * html .v-splitpanel-horizontal .v-splitpanel-hsplitter div {
  2761. height: 99%;
  2762. }
  2763. * html .v-splitpanel-vertical .v-splitpanel-vsplitter {
  2764. height: 8px;
  2765. }
  2766. * html .v-splitpanel-vertical .v-splitpanel-vsplitter div {
  2767. margin: 0;
  2768. }
  2769. .v-table-header-wrap {
  2770. height: 36px;
  2771. border: 1px solid #b6bbbc;
  2772. border-bottom: none;
  2773. background: #e7edf3 url(table/img/header-bg.png) repeat-x;
  2774. }
  2775. .v-table-header {
  2776. height: 36px;
  2777. }
  2778. .v-table-resizer {
  2779. height: 36px;
  2780. width: 4px;
  2781. background: transparent url(table/img/resizer-bg.png) repeat-y 50% 50%;
  2782. }
  2783. .v-table-caption-container {
  2784. color: #393a3c;
  2785. font-size: 15px;
  2786. padding-top: 9px;
  2787. text-shadow: #ffffff 0 1px 0;
  2788. padding-right: 2px; /* See themes/base/table.css for explanation */
  2789. }
  2790. .v-table-header-cell-asc .v-table-caption-container {
  2791. background: transparent url(table/img/sort-asc.png) no-repeat right 80%;
  2792. }
  2793. .v-table-header-cell-desc .v-table-caption-container {
  2794. background: transparent url(table/img/sort-desc.png) no-repeat right 80%;
  2795. }
  2796. .v-table-header-cell:hover,
  2797. .v-table-header-cell-asc:hover,
  2798. .v-table-header-cell-desc:hover {
  2799. background: transparent url(table/img/header-bg-over.png) repeat-x;
  2800. }
  2801. .v-table-body {
  2802. background: #fff;
  2803. border: 1px solid #b6bbbc;
  2804. }
  2805. .v-table-row,
  2806. .v-table-row-odd {
  2807. background-color: #fff;
  2808. }
  2809. .v-table-row-odd {
  2810. background-color: #f6f7f7;
  2811. }
  2812. .v-table-row:hover,
  2813. .v-table-row-odd:hover {
  2814. background-color: #edeeee;
  2815. }
  2816. .v-table .v-selected {
  2817. background: #57a7ed;
  2818. color: #fff;
  2819. }
  2820. .v-table-cell-content {
  2821. padding: 0 6px 0 4px;
  2822. border-right: none;
  2823. }
  2824. .v-table-cell-wrapper {
  2825. white-space: nowrap;
  2826. overflow: hidden;
  2827. line-height: 23px;
  2828. /* Do not specify horizontal padding here */
  2829. padding: 3px 0 0 0;
  2830. }
  2831. /* Fix textfield size to correspond label size inside table */
  2832. .v-table-cell-content .v-textfield,
  2833. .v-table-cell-content .v-button {
  2834. margin: -3px 0 0 0;
  2835. }
  2836. .v-table-cell-content .v-textfield,
  2837. .v-table-cell-content .v-datefield {
  2838. width: 97%; /* approximate */
  2839. }
  2840. /* ...but not for datefield textarea */
  2841. .v-table-cell-content .v-datefield .v-textfield {
  2842. width: auto;
  2843. }
  2844. /* datefield button is too high for table cell */
  2845. .v-table-cell-content .v-datefield-button {
  2846. height: 25px;
  2847. margin: -3px 0 0 0;
  2848. }
  2849. .v-table-column-selector {
  2850. background: transparent url(table/img/colsel.png) no-repeat;
  2851. margin: -36px 0 0 0;
  2852. height: 36px;
  2853. width: 15px;
  2854. }
  2855. .v-table-focus-slot-left {
  2856. border-color: #b6bbbc;
  2857. }
  2858. .v-table-focus-slot-right {
  2859. border-color: #b6bbbc;
  2860. }
  2861. .v-table-header-drag {
  2862. background: #e7edf3 url(table/img/header-bg.png) repeat-x;
  2863. border: 1px solid #b6bbbc;
  2864. padding: 4px;
  2865. font-family: "Trebuchet MS", geneva, helvetica, arial, tahoma, verdana, sans-serif;
  2866. color: #464f52;
  2867. font-size: 15px;
  2868. margin-top: 20px;
  2869. }
  2870. .v-table-scrollposition {
  2871. width: 160px;
  2872. height: 39px;
  2873. background: transparent url(table/img/scroll-position-bg.png);
  2874. border: none;
  2875. }
  2876. .v-table-scrollposition span {
  2877. display: block;
  2878. margin-top: 8px;
  2879. text-align: center;
  2880. font-family: "Trebuchet MS", geneva, helvetica, arial, tahoma, verdana, sans-serif;
  2881. color: #464f52;
  2882. font-size: 15px;
  2883. text-shadow: #ffffff 2px 2px 0;
  2884. }
  2885. /* row in column selector */
  2886. .v-on div {
  2887. background: transparent url(table/img/check.gif) no-repeat 2px 50%;
  2888. text-indent: 6px;
  2889. }
  2890. .v-off div {
  2891. text-indent: 6px;
  2892. }
  2893. .v-table .v-link {
  2894. display: inline;
  2895. }
  2896. /* IE6 hack */
  2897. .v-ie6 .v-table-scrollposition {
  2898. background: transparent;
  2899. /*
  2900. AlphaImageLoader uses src attribute relative to host page, not CSS
  2901. We need multiple different filters because we cannot be sure how host page is served compared to theme resources
  2902. TODO: This actually does not work as expected, since only the last filter is applied. Can we chain filters together (i.e. contain all versions on one line)?
  2903. */
  2904. filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src="../../VAADIN/themes/default/table/img/scroll-position-bg.png", sizingMethod="scale");
  2905. filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src="../VAADIN/themes/default/table/img/scroll-position-bg.png", sizingMethod="scale");
  2906. filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src="VAADIN/themes/default/table/img/scroll-position-bg.png", sizingMethod="scale");
  2907. filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src="/VAADIN/themes/default/table/img/scroll-position-bg.png", sizingMethod="scale");
  2908. }
  2909. .v-tabsheet-tabs {
  2910. height: 48px;
  2911. }
  2912. .v-tabsheet-spacertd div {
  2913. height: 37px;
  2914. border: 1px solid #b6bbbc;
  2915. background: transparent url(tabsheet/img/tab-bg.png);
  2916. padding: 0;
  2917. }
  2918. .v-tabsheet-scroller {
  2919. margin-top: -37px;
  2920. }
  2921. .v-tabsheet-scrollerPrev,
  2922. .v-tabsheet-scrollerNext {
  2923. border: none;
  2924. width: 12px;
  2925. height: 38px;
  2926. opacity: 0.9999;
  2927. margin-top: -1px;
  2928. }
  2929. .v-tabsheet-scrollerPrev-disabled,
  2930. .v-tabsheet-scrollerNext-disabled {
  2931. border: none;
  2932. width: 12px;
  2933. height: 38px;
  2934. margin-top: -1px;
  2935. opacity: 0.9999;
  2936. }
  2937. .v-tabsheet-scrollerNext,
  2938. .v-tabsheet-scrollerNext-disabled {
  2939. background: transparent url(tabsheet/img/next.png) no-repeat;
  2940. }
  2941. .v-tabsheet-scrollerPrev,
  2942. .v-tabsheet-scrollerPrev-disabled {
  2943. background: transparent url(tabsheet/img/prev.png) no-repeat;
  2944. }
  2945. .v-tabsheet-scrollerPrev:hover,
  2946. .v-tabsheet-scrollerNext:hover {
  2947. background-position: -24px 0px;
  2948. }
  2949. .v-tabsheet-scrollerPrev-disabled,
  2950. .v-tabsheet-scrollerNext-disabled {
  2951. background-position: -12px 0px;
  2952. }
  2953. .v-tabsheet-scrollerPrev-disabled:hover,
  2954. .v-tabsheet-scrollerNext-disabled:hover {
  2955. background-position: -12px 0px;
  2956. }
  2957. .v-tabsheet-tabitem {
  2958. border: 1px solid #b6bbbc;
  2959. border-right: none;
  2960. height: 37px;
  2961. padding: 0;
  2962. margin-top: 9px;
  2963. color: #777f85;
  2964. font-size: 15px;
  2965. line-height: 18px;
  2966. background: #f8f9f9 url(tabsheet/img/tab-bg.png);
  2967. }
  2968. .v-tabsheet-tabitem .v-caption {
  2969. height: 20px;
  2970. padding: 9px 15px 8px 15px;
  2971. }
  2972. .v-tabsheet-tabitem-selected {
  2973. border: none;
  2974. background: transparent url(panel/img/top-left.png) no-repeat;
  2975. margin: 0;
  2976. padding: 0;
  2977. height: 48px;
  2978. color: #ee5311;
  2979. }
  2980. .v-tabsheet-tabitem:hover {
  2981. color: #4b5257;
  2982. }
  2983. .v-tabsheet-tabitem-selected:hover {
  2984. color: #ee5311;
  2985. }
  2986. .v-tabsheet-tabitem-selected .v-caption {
  2987. background: transparent url(panel/img/top-right.png) repeat-x right top;
  2988. margin: 0 -1px 0 9px;
  2989. height: 18px;
  2990. padding: 16px 16px 14px 7px;
  2991. overflow: visible;
  2992. }
  2993. .v-tabsheet-caption-close {
  2994. margin-left: 3px;
  2995. margin-right: -3px;
  2996. width: 16px;
  2997. height: 16px;
  2998. -webkit-border-radius: 8px;
  2999. -moz-border-radius: 8px;
  3000. color: #777f85;
  3001. line-height: 13px;
  3002. }
  3003. .v-tabsheet-caption-close:hover {
  3004. background: #dce0e0;
  3005. }
  3006. .v-tabsheet-caption-close:active {
  3007. background: #b6bbbc;
  3008. color: #fff;
  3009. }
  3010. .v-tabsheet-content {
  3011. border: 1px solid #babfc0;
  3012. background-color: #fff;
  3013. border-bottom: 1px solid #dee2e3;
  3014. border-top: none;
  3015. }
  3016. .v-tabsheet-hidetabs .v-tabsheet-content {
  3017. border-top: 1px solid #b5babb;
  3018. }
  3019. .v-tabsheet-deco {
  3020. height: 10px;
  3021. background: transparent url(panel/img/bottom-right.png) repeat-x right top;
  3022. margin-left: 9px;
  3023. overflow: visible;
  3024. }
  3025. .v-tabsheet-deco:before {
  3026. display: block;
  3027. content: "";
  3028. width: 9px;
  3029. height: 9px;
  3030. margin-left: -9px;
  3031. background: transparent url(panel/img/bottom-left.png) no-repeat;
  3032. }
  3033. /* Progress indication */
  3034. .v-tabsheet-loading .v-tabsheet-tabitem-selected .v-captiontext {
  3035. background: transparent url(../base/common/img/ajax-loader.gif) no-repeat top right;
  3036. margin-left: -10px;
  3037. padding-left: 10px;
  3038. margin-right: -10px;
  3039. padding-right: 10px;
  3040. margin-top: -12px;
  3041. padding-top: 12px;
  3042. }
  3043. /* IE specific styles */
  3044. .v-ie6 .v-tabsheet-tabs {
  3045. height: 46px;
  3046. }
  3047. .v-ie6 .v-tabsheet-tabitem-selected {
  3048. border: 1px solid #babfc0;
  3049. border-bottom: none;
  3050. background: #fff;
  3051. margin-top: 0;
  3052. height: 23px;
  3053. padding: 18px 14px 6px 15px;
  3054. cursor: default;
  3055. color: #ee5311;
  3056. }
  3057. .v-ie6 .v-tabsheet-tabitem-selected .v-caption {
  3058. background: transparent;
  3059. padding: 0;
  3060. margin: 0;
  3061. }
  3062. .v-ie6 .v-tabsheet-content,
  3063. .v-ie7 .v-tabsheet-content,
  3064. .v-ie8 .v-tabsheet-content {
  3065. border-bottom: none;
  3066. }
  3067. .v-ie6 .v-tabsheet-deco,
  3068. .v-ie7 .v-tabsheet-deco,
  3069. .v-ie8 .v-tabsheet-deco {
  3070. height: 1px;
  3071. background: #babfc0;
  3072. overflow: hidden;
  3073. margin: 0;
  3074. }
  3075. .v-ie7 .v-tabsheet-deco,
  3076. .v-ie8 .v-tabsheet-deco {
  3077. width: 100%;
  3078. }
  3079. /* Light-style */
  3080. .v-tabsheet-light .v-tabsheet-tabcontainer {
  3081. height: 32px;
  3082. }
  3083. .v-tabsheet-tabs-light {
  3084. height: 32px;
  3085. width: 100%;
  3086. overflow:hidden;
  3087. background: transparent url(tabsheet/img/inline-tab-bg.png) repeat-x;
  3088. }
  3089. .v-tabsheet-light .v-tabsheet-spacertd div {
  3090. height: 31px;
  3091. border: none;
  3092. border-bottom: 1px solid #b6bbbc;
  3093. background: transparent;
  3094. }
  3095. .v-tabsheet-light .v-tabsheet-tabitem {
  3096. border: none;
  3097. border-bottom: 1px solid #b6bbbc;
  3098. height: 30px;
  3099. padding: 0;
  3100. margin-top: 0;
  3101. color: #656d73;
  3102. font-size: 12px;
  3103. line-height: normal;
  3104. background: transparent;
  3105. cursor: pointer;
  3106. text-shadow: #fff 0 1px 0;
  3107. }
  3108. .v-tabsheet-light .v-tabsheet-tabitemcell-first .v-caption {
  3109. margin-left: 6px;
  3110. }
  3111. .v-tabsheet-light .v-tabsheet-tabitem .v-caption {
  3112. height: 24px;
  3113. padding: 8px 9px 0 9px;
  3114. }
  3115. .v-tabsheet-light .v-tabsheet-tabitem-selected {
  3116. border: none;
  3117. background: #fff url(tabsheet/img/inline-tab-right.png) no-repeat right top;
  3118. margin: 0;
  3119. padding: 0;
  3120. height: 32px;
  3121. cursor: default;
  3122. color: #ee5311;
  3123. text-shadow: none;
  3124. }
  3125. .v-tabsheet-light .v-tabsheet-tabitem:hover {
  3126. color: #4b5257;
  3127. }
  3128. .v-tabsheet-light .v-tabsheet-tabitem-selected:hover {
  3129. color: #ee5311;
  3130. }
  3131. .v-tabsheet-light .v-tabsheet-tabitem-selected .v-caption {
  3132. background: transparent url(tabsheet/img/inline-tab-left.png) no-repeat -7px 0;
  3133. margin: 0;
  3134. height: 23px;
  3135. padding: 9px 11px 0 11px;
  3136. overflow: visible;
  3137. }
  3138. .v-tabsheet-light .v-tabsheet-tabitemcell-first .v-tabsheet-tabitem-selected .v-caption {
  3139. background: transparent url(tabsheet/img/inline-tab-left.png) no-repeat -3px 0;
  3140. padding-left: 15px;
  3141. }
  3142. .v-tabsheet-light .v-tabsheet-content {
  3143. border: none;
  3144. background: transparent;
  3145. }
  3146. .v-tabsheet-light .v-tabsheet-hidetabs .v-tabsheet-content {
  3147. border: none;
  3148. }
  3149. .v-tabsheet-deco-light {
  3150. height: 0;
  3151. overflow: hidden;
  3152. }
  3153. .v-tabsheet-deco-light:before {
  3154. display: none;
  3155. }
  3156. /* Scroller */
  3157. .v-tabsheet-light .v-tabsheet-scrollerPrev,
  3158. .v-tabsheet-light .v-tabsheet-scrollerNext {
  3159. margin-top: 2px;
  3160. height: 34px;
  3161. }
  3162. .v-tabsheet-light .v-tabsheet-scrollerPrev-disabled,
  3163. .v-tabsheet-light .v-tabsheet-scrollerNext-disabled {
  3164. margin-top: 2px;
  3165. height: 34px;
  3166. }
  3167. /* Progress indication */
  3168. .v-tabsheet-loading .v-tabsheet-tabs-light .v-tabsheet-tabitem-selected .v-captiontext {
  3169. margin-left: -3px;
  3170. padding-left: 3px;
  3171. }
  3172. /* IE specific styles */
  3173. .v-ie6 .v-tabsheet-tabs-light,
  3174. .v-ie7 .v-tabsheet-tabs-light {
  3175. height: 32px;
  3176. }
  3177. .v-ie6 .v-tabsheet-light .v-tabsheet-tabitem-selected,
  3178. .v-ie7 .v-tabsheet-light .v-tabsheet-tabitem-selected {
  3179. border: none;
  3180. background: #fff url(tabsheet/img/inline-tab-right.png) no-repeat right top;
  3181. padding: 0;
  3182. height: 32px;
  3183. }
  3184. .v-ie6 .v-tabsheet-light .v-tabsheet-tabitem-selected .v-caption,
  3185. .v-ie7 .v-tabsheet-light .v-tabsheet-tabitem-selected .v-caption {
  3186. background: transparent url(tabsheet/img/inline-tab-left.png) no-repeat -7px 0;
  3187. padding: 9px 11px 0 11px;
  3188. }
  3189. .v-ie6 .v-tabsheet-deco-light,
  3190. .v-ie7 .v-tabsheet-deco-light,
  3191. .v-ie8 .v-tabsheet-deco-light {
  3192. height: 0;
  3193. }
  3194. .v-textfield {
  3195. background: #fff url(textfield/img/bg.png) repeat-x;
  3196. padding: 2px;
  3197. border: 1px solid #b6b6b6;
  3198. border-top-color: #9d9d9d;
  3199. border-bottom-color: #d6d6d6;
  3200. border-right-color: #d6d6d6;
  3201. margin: 0;
  3202. font-size: 13px;
  3203. height: 18px;
  3204. }
  3205. .v-textarea {
  3206. background: #fff url(textfield/img/bg.png) repeat-x;
  3207. padding: 2px;
  3208. border: 1px solid #b6b6b6;
  3209. border-top-color: #9d9d9d;
  3210. border-bottom-color: #d6d6d6;
  3211. border-right-color: #d6d6d6;
  3212. margin: 0;
  3213. font-size: 13px;
  3214. }
  3215. .v-textfield-focus,
  3216. .v-textarea-focus {
  3217. border-color: #5daee8;
  3218. }
  3219. input.v-textfield-prompt,
  3220. textarea.v-textarea-prompt {
  3221. color: #999;
  3222. font-style: normal;
  3223. }
  3224. .v-richtextarea {
  3225. border: 1px solid #b6b6b6;
  3226. }
  3227. .v-richtextarea .gwt-RichTextArea {
  3228. background: #fff url(textfield/img/bg.png) repeat-x;
  3229. }
  3230. .v-tree-node {
  3231. background: transparent url(tree/img/collapsed.png) no-repeat 2px 1px;
  3232. }
  3233. .v-tree-node-expanded {
  3234. background: transparent url(tree/img/expanded.png) no-repeat 2px 1px;
  3235. }
  3236. .v-tree-node-caption {
  3237. margin-left: 16px;
  3238. }
  3239. .v-tree-node span {
  3240. padding: 0 2px;
  3241. }
  3242. .v-tree-node-selected span {
  3243. background: #5daee8;
  3244. color: #fff;
  3245. padding: 0 2px;
  3246. }
  3247. .v-tree-node-children {
  3248. padding-left: 16px;
  3249. }
  3250. /* IMPORTANT keep the offsetWidth (width + padding) of this element the same as the margin-left of v-tree-node-caption */
  3251. .v-ie6 .v-tree-node-ie6compatnode {
  3252. width: 14px;
  3253. height: 10px;
  3254. padding: 1px;
  3255. }
  3256. .v-window {
  3257. color: #464f52;
  3258. font-family: "Trebuchet MS", geneva, helvetica, arial, tahoma, verdana, sans-serif;
  3259. font-size: 13px;
  3260. line-height: 18px;
  3261. background: transparent url(window/img/bottom-left.png) no-repeat left bottom;
  3262. }
  3263. .v-window-wrap {
  3264. background: transparent url(window/img/top-left.png) no-repeat;
  3265. }
  3266. .v-window-outerheader {
  3267. height: 23px;
  3268. margin-left: 9px;
  3269. padding: 15px 40px 11px 12px;
  3270. background: transparent url(window/img/top-right.png) no-repeat right top;
  3271. }
  3272. .v-window-header {
  3273. font-size: 18px;
  3274. line-height: 1.2;
  3275. font-weight: normal;
  3276. letter-spacing: -0.03em;
  3277. color: #f14c1a;
  3278. text-shadow: 0 1px 0 #fff;
  3279. /* This element is 100% wide in IE6 */
  3280. }
  3281. .v-window-contents {
  3282. background: #fff;
  3283. border: 2px solid #acb2b3;
  3284. border-top: none;
  3285. border-bottom: none;
  3286. }
  3287. .v-window div.v-window-footer {
  3288. height: 8px;
  3289. margin-left: 9px;
  3290. background: transparent url(window/img/bottom-right.png) no-repeat right top;
  3291. overflow: visible;
  3292. }
  3293. .v-ie7 .v-window-footer {
  3294. position: relative;
  3295. overflow: visible;
  3296. }
  3297. .v-window-resizebox,
  3298. .v-ie7 .v-window-resizebox {
  3299. position: absolute; /* Needed to position the element over ScrollPanel, which is relatively positioned */
  3300. right: 5px;
  3301. width: 10px;
  3302. height: 10px;
  3303. margin-top: -7px;
  3304. background: transparent url(window/img/resize.png);
  3305. }
  3306. .v-window-resizebox-disabled {
  3307. background: transparent;
  3308. display: block;
  3309. }
  3310. .v-window-closebox {
  3311. position: absolute;
  3312. top: 21px;
  3313. right: 24px;
  3314. width: 12px;
  3315. height: 12px;
  3316. background: transparent url(window/img/close.png);
  3317. }
  3318. .v-window-closebox:hover {
  3319. background-position: 0 -12px;
  3320. }
  3321. .v-window-modalitycurtain {
  3322. background: #fff;
  3323. }
  3324. /* Shadow for window */
  3325. .v-shadow-window .top-left {
  3326. top: -13px; left: -20px;
  3327. width: 39px; height: 39px;
  3328. background: transparent url(window/img/shadow/top-left.png);
  3329. }
  3330. .v-shadow-window .top {
  3331. top: -13px; left: 19px;
  3332. height: 39px;
  3333. right: 19px;
  3334. background: transparent url(window/img/shadow/top.png);
  3335. }
  3336. .v-shadow-window .top-right {
  3337. top: -13px; right: -20px;
  3338. width: 39px; height: 39px;
  3339. background: transparent url(window/img/shadow/top-right.png);
  3340. }
  3341. .v-shadow-window .left {
  3342. top: 26px; left: -20px;
  3343. width: 39px;
  3344. bottom: 12px;
  3345. background: transparent url(window/img/shadow/left.png);
  3346. }
  3347. .v-shadow-window .center {
  3348. top: 26px; left: 19px;
  3349. bottom: 12px; right: 19px;
  3350. background: transparent url(window/img/shadow/center.png);
  3351. }
  3352. .v-shadow-window .right {
  3353. top: 26px; right: -20px;
  3354. width: 39px;
  3355. bottom: 12px;
  3356. background: transparent url(window/img/shadow/right.png);
  3357. }
  3358. .v-shadow-window .bottom-left {
  3359. bottom: -27px; left: -20px;
  3360. width: 39px; height: 39px;
  3361. background: transparent url(window/img/shadow/bottom-left.png);
  3362. }
  3363. .v-shadow-window .bottom {
  3364. bottom: -27px; left: 19px;
  3365. right: 19px; height: 39px;
  3366. background: transparent url(window/img/shadow/bottom.png);
  3367. }
  3368. .v-shadow-window .bottom-right {
  3369. bottom: -27px; right: -20px;
  3370. width: 39px; height: 39px;
  3371. background: transparent url(window/img/shadow/bottom-right.png);
  3372. }