editor.jqueryui.css 23 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801
  1. div.DTE_Field input,
  2. div.DTE_Field textarea {
  3. box-sizing: border-box;
  4. background-color: white;
  5. -webkit-transition: background-color ease-in-out .15s;
  6. transition: background-color ease-in-out .15s;
  7. }
  8. div.DTE_Field input:focus,
  9. div.DTE_Field textarea:focus {
  10. background-color: #ffffee;
  11. }
  12. div.DTE_Field input[type="color"],
  13. div.DTE_Field input[type="date"],
  14. div.DTE_Field input[type="datetime"],
  15. div.DTE_Field input[type="datetime-local"],
  16. div.DTE_Field input[type="email"],
  17. div.DTE_Field input[type="month"],
  18. div.DTE_Field input[type="number"],
  19. div.DTE_Field input[type="password"],
  20. div.DTE_Field input[type="search"],
  21. div.DTE_Field input[type="tel"],
  22. div.DTE_Field input[type="text"],
  23. div.DTE_Field input[type="time"],
  24. div.DTE_Field input[type="url"],
  25. div.DTE_Field input[type="week"] {
  26. padding: 6px 4px;
  27. width: 100%;
  28. }
  29. div.DTE_Field div.DTE_Field_Info,
  30. div.DTE_Field div.DTE_Field_Message {
  31. font-size: 11px;
  32. line-height: 1em;
  33. }
  34. div.DTE_Field div.DTE_Field_Error {
  35. font-size: 11px;
  36. line-height: 1em;
  37. display: none;
  38. color: red;
  39. margin-top: 5px;
  40. }
  41. div.DTE_Field div.multi-value {
  42. display: none;
  43. border: 1px dotted #666;
  44. border-radius: 3px;
  45. padding: 5px;
  46. background-color: #fafafa;
  47. cursor: pointer;
  48. }
  49. div.DTE_Field div.multi-value span {
  50. font-size: 0.8em;
  51. line-height: 1.25em;
  52. display: block;
  53. color: #666;
  54. }
  55. div.DTE_Field div.multi-value:hover {
  56. background-color: #f1f1f1;
  57. }
  58. div.DTE_Field div.multi-restore {
  59. display: none;
  60. margin-top: 0.5em;
  61. font-size: 0.8em;
  62. line-height: 1.25em;
  63. color: #3879d9;
  64. }
  65. div.DTE_Field div.multi-restore:hover {
  66. text-decoration: underline;
  67. cursor: pointer;
  68. }
  69. div.DTE_Field_Type_textarea textarea {
  70. padding: 3px;
  71. width: 100%;
  72. height: 80px;
  73. }
  74. div.DTE_Field.DTE_Field_Type_date img {
  75. vertical-align: middle;
  76. cursor: pointer;
  77. *cursor: hand;
  78. }
  79. div.DTE_Field.DTE_Field_Type_date input.jqueryui {
  80. width: 87%;
  81. margin-right: 6px;
  82. }
  83. div.DTE_Field_Type_checkbox div.DTE_Field_Input > div > div,
  84. div.DTE_Field_Type_radio div.DTE_Field_Input > div > div {
  85. margin-bottom: 0.25em;
  86. }
  87. div.DTE_Field_Type_checkbox div.DTE_Field_Input > div > div:last-child,
  88. div.DTE_Field_Type_radio div.DTE_Field_Input > div > div:last-child {
  89. margin-bottom: 0;
  90. }
  91. div.DTE_Field_Type_checkbox div.DTE_Field_Input > div > div label,
  92. div.DTE_Field_Type_radio div.DTE_Field_Input > div > div label {
  93. margin-left: 0.75em;
  94. vertical-align: middle;
  95. }
  96. div.DTE_Field_Type_select div.DTE_Field_Input {
  97. padding-top: 4px;
  98. }
  99. div.DTE_Body {
  100. padding: 50px 0;
  101. }
  102. div.DTE_Body div.DTE_Body_Content {
  103. position: relative;
  104. overflow: auto;
  105. }
  106. div.DTE_Body div.DTE_Body_Content div.DTE_Form_Info {
  107. padding: 1em 1em 0 1em;
  108. margin: 0;
  109. }
  110. div.DTE_Body div.DTE_Body_Content div.DTE_Field {
  111. position: relative;
  112. zoom: 1;
  113. clear: both;
  114. padding: 5px 20%;
  115. border: 1px solid transparent;
  116. }
  117. div.DTE_Body div.DTE_Body_Content div.DTE_Field:after {
  118. display: block;
  119. content: ".";
  120. height: 0;
  121. line-height: 0;
  122. clear: both;
  123. visibility: hidden;
  124. }
  125. div.DTE_Body div.DTE_Body_Content div.DTE_Field:hover {
  126. background-color: #f9f9f9;
  127. border: 1px solid #f3f3f3;
  128. }
  129. div.DTE_Body div.DTE_Body_Content div.DTE_Field > label {
  130. float: left;
  131. width: 40%;
  132. padding-top: 6px;
  133. }
  134. div.DTE_Body div.DTE_Body_Content div.DTE_Field > div.DTE_Field_Input {
  135. float: right;
  136. width: 60%;
  137. }
  138. div.DTE_Body div.DTE_Body_Content div.DTE_Field.full {
  139. padding: 5px 0 5px 20%;
  140. }
  141. div.DTE_Body div.DTE_Body_Content div.DTE_Field.full > label {
  142. width: 30%;
  143. }
  144. div.DTE_Body div.DTE_Body_Content div.DTE_Field.full > div.DTE_Field_Input {
  145. width: 70%;
  146. }
  147. div.DTE_Body div.DTE_Body_Content div.DTE_Field.block > div.DTE_Field_Input {
  148. float: none;
  149. clear: both;
  150. width: 100%;
  151. }
  152. html[dir="rtl"] div.DTE_Body div.DTE_Body_Content div.DTE_Field > label {
  153. float: right;
  154. }
  155. html[dir="rtl"] div.DTE_Body div.DTE_Body_Content div.DTE_Field > div.DTE_Field_Input {
  156. float: left;
  157. }
  158. html[dir="rtl"] div.DTE div.DTE_Form_Buttons button {
  159. float: left;
  160. }
  161. @media only screen and (max-width: 768px) {
  162. div.DTE_Body div.DTE_Body_Content div.DTE_Field {
  163. padding: 5px 10%;
  164. }
  165. div.DTE_Body div.DTE_Body_Content div.DTE_Field.full {
  166. padding: 5px 0 5px 10%;
  167. }
  168. div.DTE_Body div.DTE_Body_Content div.DTE_Field.full > label {
  169. width: 35.5%;
  170. }
  171. div.DTE_Body div.DTE_Body_Content div.DTE_Field.full > div.DTE_Field_Input {
  172. width: 64.5%;
  173. }
  174. div.DTE_Body div.DTE_Body_Content div.DTE_Field.block > div.DTE_Field_Input {
  175. width: 100%;
  176. }
  177. }
  178. @media only screen and (max-width: 640px) {
  179. div.DTE_Body div.DTE_Body_Content div.DTE_Field {
  180. padding: 5px 0;
  181. }
  182. div.DTE_Body div.DTE_Body_Content div.DTE_Field.full {
  183. padding: 5px 0%;
  184. }
  185. div.DTE_Body div.DTE_Body_Content div.DTE_Field.full > label {
  186. width: 40%;
  187. }
  188. div.DTE_Body div.DTE_Body_Content div.DTE_Field.full > div.DTE_Field_Input {
  189. width: 60%;
  190. }
  191. div.DTE_Body div.DTE_Body_Content div.DTE_Field.block > div.DTE_Field_Input {
  192. width: 100%;
  193. }
  194. }
  195. @media only screen and (max-width: 580px) {
  196. div.DTE_Body div.DTE_Body_Content div.DTE_Field {
  197. position: relative;
  198. zoom: 1;
  199. clear: both;
  200. padding: 5px 0;
  201. }
  202. div.DTE_Body div.DTE_Body_Content div.DTE_Field > label {
  203. float: none;
  204. width: auto;
  205. padding-top: 0;
  206. }
  207. div.DTE_Body div.DTE_Body_Content div.DTE_Field > div.DTE_Field_Input {
  208. float: none;
  209. width: auto;
  210. }
  211. div.DTE_Body div.DTE_Body_Content div.DTE_Field.full, div.DTE_Body div.DTE_Body_Content div.DTE_Field.block {
  212. padding: 5px 0;
  213. }
  214. div.DTE_Body div.DTE_Body_Content div.DTE_Field.full > label,
  215. div.DTE_Body div.DTE_Body_Content div.DTE_Field.full > div.DTE_Field_Input, div.DTE_Body div.DTE_Body_Content div.DTE_Field.block > label,
  216. div.DTE_Body div.DTE_Body_Content div.DTE_Field.block > div.DTE_Field_Input {
  217. width: 100%;
  218. }
  219. }
  220. div.DTE_Bubble {
  221. position: absolute;
  222. z-index: 11;
  223. margin-top: -6px;
  224. opacity: 0;
  225. }
  226. div.DTE_Bubble div.DTE_Bubble_Liner {
  227. position: absolute;
  228. bottom: 0;
  229. border: 1px solid black;
  230. width: 300px;
  231. margin-left: -150px;
  232. background-color: white;
  233. box-shadow: 2px 2px 7px #555;
  234. border-radius: 5px;
  235. border: 2px solid #444;
  236. padding: 1em;
  237. -webkit-box-sizing: border-box;
  238. -moz-box-sizing: border-box;
  239. box-sizing: border-box;
  240. }
  241. div.DTE_Bubble div.DTE_Bubble_Liner div.DTE_Bubble_Table {
  242. display: table;
  243. width: 100%;
  244. }
  245. div.DTE_Bubble div.DTE_Bubble_Liner div.DTE_Bubble_Table > form {
  246. display: table-cell;
  247. }
  248. div.DTE_Bubble div.DTE_Bubble_Liner div.DTE_Bubble_Table > form div.DTE_Form_Content {
  249. padding: 0;
  250. }
  251. div.DTE_Bubble div.DTE_Bubble_Liner div.DTE_Bubble_Table > form div.DTE_Form_Content div.DTE_Field {
  252. position: relative;
  253. zoom: 1;
  254. margin-bottom: 0.5em;
  255. }
  256. div.DTE_Bubble div.DTE_Bubble_Liner div.DTE_Bubble_Table > form div.DTE_Form_Content div.DTE_Field:last-child {
  257. margin-bottom: 0;
  258. }
  259. div.DTE_Bubble div.DTE_Bubble_Liner div.DTE_Bubble_Table div.DTE_Form_Buttons {
  260. display: table-cell;
  261. vertical-align: bottom;
  262. padding: 0 0 0 0.75em;
  263. width: 1%;
  264. }
  265. div.DTE_Bubble div.DTE_Bubble_Liner div.DTE_Header {
  266. border-top-left-radius: 5px;
  267. border-top-right-radius: 5px;
  268. }
  269. div.DTE_Bubble div.DTE_Bubble_Liner div.DTE_Header + div.DTE_Form_Info,
  270. div.DTE_Bubble div.DTE_Bubble_Liner div.DTE_Header + div.DTE_Bubble_Table {
  271. padding-top: 42px;
  272. }
  273. div.DTE_Bubble div.DTE_Bubble_Liner div.DTE_Form_Error {
  274. float: none;
  275. display: none;
  276. padding: 0;
  277. margin-bottom: 0.5em;
  278. }
  279. div.DTE_Bubble div.DTE_Bubble_Liner div.DTE_Bubble_Close {
  280. position: absolute;
  281. top: -11px;
  282. right: -11px;
  283. width: 22px;
  284. height: 22px;
  285. border: 2px solid white;
  286. background-color: black;
  287. text-align: center;
  288. border-radius: 15px;
  289. cursor: pointer;
  290. z-index: 12;
  291. box-shadow: 2px 2px 6px #111;
  292. }
  293. div.DTE_Bubble div.DTE_Bubble_Liner div.DTE_Bubble_Close:after {
  294. content: '\00d7';
  295. color: white;
  296. font-weight: bold;
  297. font-size: 18px;
  298. line-height: 22px;
  299. font-family: 'Courier New', Courier, monospace;
  300. padding-left: 1px;
  301. }
  302. div.DTE_Bubble div.DTE_Bubble_Liner div.DTE_Bubble_Close:hover {
  303. background-color: #092079;
  304. box-shadow: 2px 2px 9px #111;
  305. }
  306. div.DTE_Bubble div.DTE_Bubble_Triangle {
  307. position: absolute;
  308. height: 10px;
  309. width: 10px;
  310. top: -6px;
  311. background-color: white;
  312. border: 2px solid #444;
  313. border-top: none;
  314. border-right: none;
  315. -webkit-transform: rotate(-45deg);
  316. -moz-transform: rotate(-45deg);
  317. -ms-transform: rotate(-45deg);
  318. -o-transform: rotate(-45deg);
  319. transform: rotate(-45deg);
  320. }
  321. div.DTE_Bubble.DTE_Processing div.DTE_Bubble_Liner:after {
  322. position: absolute;
  323. content: ' ';
  324. display: block;
  325. top: 12px;
  326. right: 18px;
  327. height: 12px;
  328. width: 17px;
  329. background: url("../images/ajax-loader-small.gif") no-repeat top left;
  330. }
  331. div.DTE_Bubble.below div.DTE_Bubble_Liner {
  332. top: 10px;
  333. bottom: auto;
  334. }
  335. div.DTE_Bubble.below div.DTE_Bubble_Triangle {
  336. top: 4px;
  337. -webkit-transform: rotate(135deg);
  338. -moz-transform: rotate(135deg);
  339. -ms-transform: rotate(135deg);
  340. -o-transform: rotate(135deg);
  341. transform: rotate(135deg);
  342. }
  343. div.DTE_Bubble_Background {
  344. position: fixed;
  345. top: 0;
  346. left: 0;
  347. width: 100%;
  348. height: 100%;
  349. background: rgba(0, 0, 0, 0.7);
  350. /* Fallback */
  351. background: -ms-radial-gradient(center, ellipse farthest-corner, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.7) 100%);
  352. /* IE10 Consumer Preview */
  353. background: -moz-radial-gradient(center, ellipse farthest-corner, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.7) 100%);
  354. /* Firefox */
  355. background: -o-radial-gradient(center, ellipse farthest-corner, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.7) 100%);
  356. /* Opera */
  357. background: -webkit-gradient(radial, center center, 0, center center, 497, color-stop(0, rgba(0, 0, 0, 0.3)), color-stop(1, rgba(0, 0, 0, 0.7)));
  358. /* Webkit (Safari/Chrome 10) */
  359. background: -webkit-radial-gradient(center, ellipse farthest-corner, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.7) 100%);
  360. /* Webkit (Chrome 11+) */
  361. background: radial-gradient(ellipse farthest-corner at center, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.7) 100%);
  362. /* W3C Markup, IE10 Release Preview */
  363. z-index: 10;
  364. }
  365. div.DTE_Bubble_Background > div {
  366. position: absolute;
  367. top: 0;
  368. right: 0;
  369. left: 0;
  370. bottom: 0;
  371. filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#99000000, endColorstr=#99000000);
  372. -ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr=#99000000, endColorstr=#99000000)";
  373. }
  374. div.DTE_Bubble_Background > div:not([dummy]) {
  375. filter: progid:DXImageTransform.Microsoft.gradient(enabled='false');
  376. }
  377. div.DTE_Inline {
  378. position: relative;
  379. display: table;
  380. width: 100%;
  381. }
  382. div.DTE_Inline div.DTE_Inline_Field,
  383. div.DTE_Inline div.DTE_Inline_Buttons {
  384. display: table-cell;
  385. vertical-align: middle;
  386. }
  387. div.DTE_Inline div.DTE_Inline_Field div.DTE_Field,
  388. div.DTE_Inline div.DTE_Inline_Buttons div.DTE_Field {
  389. padding: 0;
  390. }
  391. div.DTE_Inline div.DTE_Inline_Field div.DTE_Field > label,
  392. div.DTE_Inline div.DTE_Inline_Buttons div.DTE_Field > label {
  393. display: none;
  394. }
  395. div.DTE_Inline div.DTE_Inline_Field div.DTE_Field input,
  396. div.DTE_Inline div.DTE_Inline_Buttons div.DTE_Field input {
  397. width: 100%;
  398. }
  399. div.DTE_Inline div.DTE_Inline_Field div.DTE_Form_Buttons button,
  400. div.DTE_Inline div.DTE_Inline_Buttons div.DTE_Form_Buttons button {
  401. margin: -6px 0 -6px 4px;
  402. padding: 5px;
  403. }
  404. div.DTE_Inline div.DTE_Field input[type="color"],
  405. div.DTE_Inline div.DTE_Field input[type="date"],
  406. div.DTE_Inline div.DTE_Field input[type="datetime"],
  407. div.DTE_Inline div.DTE_Field input[type="datetime-local"],
  408. div.DTE_Inline div.DTE_Field input[type="email"],
  409. div.DTE_Inline div.DTE_Field input[type="month"],
  410. div.DTE_Inline div.DTE_Field input[type="number"],
  411. div.DTE_Inline div.DTE_Field input[type="password"],
  412. div.DTE_Inline div.DTE_Field input[type="search"],
  413. div.DTE_Inline div.DTE_Field input[type="tel"],
  414. div.DTE_Inline div.DTE_Field input[type="text"],
  415. div.DTE_Inline div.DTE_Field input[type="time"],
  416. div.DTE_Inline div.DTE_Field input[type="url"],
  417. div.DTE_Inline div.DTE_Field input[type="week"] {
  418. margin: -6px 0;
  419. }
  420. div.DTE_Inline.DTE_Processing:after {
  421. position: absolute;
  422. content: ' ';
  423. display: block;
  424. top: 4px;
  425. right: 10px;
  426. height: 12px;
  427. width: 17px;
  428. background: url("../images/ajax-loader-small.gif") no-repeat top left;
  429. }
  430. span.dtr-data div.DTE_Inline {
  431. display: inline-table;
  432. }
  433. table.dataTable tbody tr.highlight {
  434. background-color: #FFFBCC !important;
  435. }
  436. table.dataTable tbody tr.highlight,
  437. table.dataTable tbody tr.noHighlight,
  438. table.dataTable tbody tr.highlight td,
  439. table.dataTable tbody tr.noHighlight td {
  440. -webkit-transition: background-color 500ms linear;
  441. -moz-transition: background-color 500ms linear;
  442. -ms-transition: background-color 500ms linear;
  443. -o-transition: background-color 500ms linear;
  444. transition: background-color 500ms linear;
  445. }
  446. table.dataTable.stripe tbody tr.odd.highlight, table.dataTable.display tbody tr.odd.highlight {
  447. background-color: #f9f5c7;
  448. }
  449. table.dataTable.hover tbody tr:hover.highlight,
  450. table.dataTable.hover tbody tr.odd:hover.highlight,
  451. table.dataTable.hover tbody tr.even:hover.highlight, table.dataTable.display tbody tr:hover.highlight,
  452. table.dataTable.display tbody tr.odd:hover.highlight,
  453. table.dataTable.display tbody tr.even:hover.highlight {
  454. background-color: #f6f2c5;
  455. }
  456. table.dataTable.order-column tbody tr.highlight > .sorting_1,
  457. table.dataTable.order-column tbody tr.highlight > .sorting_2,
  458. table.dataTable.order-column tbody tr.highlight > .sorting_3, table.dataTable.display tbody tr.highlight > .sorting_1,
  459. table.dataTable.display tbody tr.highlight > .sorting_2,
  460. table.dataTable.display tbody tr.highlight > .sorting_3 {
  461. background-color: #faf6c8;
  462. }
  463. table.dataTable.display tbody tr.odd.highlight > .sorting_1, table.dataTable.order-column.stripe tbody tr.odd.highlight > .sorting_1 {
  464. background-color: #f1edc1;
  465. }
  466. table.dataTable.display tbody tr.odd.highlight > .sorting_2, table.dataTable.order-column.stripe tbody tr.odd.highlight > .sorting_2 {
  467. background-color: #f3efc2;
  468. }
  469. table.dataTable.display tbody tr.odd.highlight > .sorting_3, table.dataTable.order-column.stripe tbody tr.odd.highlight > .sorting_3 {
  470. background-color: #f5f1c4;
  471. }
  472. table.dataTable.display tbody tr.even.highlight > .sorting_1, table.dataTable.order-column.stripe tbody tr.even.highlight > .sorting_1 {
  473. background-color: #faf6c8;
  474. }
  475. table.dataTable.display tbody tr.even.highlight > .sorting_2, table.dataTable.order-column.stripe tbody tr.even.highlight > .sorting_2 {
  476. background-color: #fcf8ca;
  477. }
  478. table.dataTable.display tbody tr.even.highlight > .sorting_3, table.dataTable.order-column.stripe tbody tr.even.highlight > .sorting_3 {
  479. background-color: #fefacb;
  480. }
  481. table.dataTable.display tbody tr:hover.highlight > .sorting_1,
  482. table.dataTable.display tbody tr.odd:hover.highlight > .sorting_1,
  483. table.dataTable.display tbody tr.even:hover.highlight > .sorting_1, table.dataTable.order-column.hover tbody tr:hover.highlight > .sorting_1,
  484. table.dataTable.order-column.hover tbody tr.odd:hover.highlight > .sorting_1,
  485. table.dataTable.order-column.hover tbody tr.even:hover.highlight > .sorting_1 {
  486. background-color: #eae6bb;
  487. }
  488. table.dataTable.display tbody tr:hover.highlight > .sorting_2,
  489. table.dataTable.display tbody tr.odd:hover.highlight > .sorting_2,
  490. table.dataTable.display tbody tr.even:hover.highlight > .sorting_2, table.dataTable.order-column.hover tbody tr:hover.highlight > .sorting_2,
  491. table.dataTable.order-column.hover tbody tr.odd:hover.highlight > .sorting_2,
  492. table.dataTable.order-column.hover tbody tr.even:hover.highlight > .sorting_2 {
  493. background-color: #ece8bd;
  494. }
  495. table.dataTable.display tbody tr:hover.highlight > .sorting_3,
  496. table.dataTable.display tbody tr.odd:hover.highlight > .sorting_3,
  497. table.dataTable.display tbody tr.even:hover.highlight > .sorting_3, table.dataTable.order-column.hover tbody tr:hover.highlight > .sorting_3,
  498. table.dataTable.order-column.hover tbody tr.odd:hover.highlight > .sorting_3,
  499. table.dataTable.order-column.hover tbody tr.even:hover.highlight > .sorting_3 {
  500. background-color: #efebbf;
  501. }
  502. div.DTE div.editor_upload {
  503. padding-top: 4px;
  504. }
  505. div.DTE div.editor_upload div.eu_table {
  506. display: table;
  507. width: 100%;
  508. }
  509. div.DTE div.editor_upload div.row {
  510. display: table-row;
  511. }
  512. div.DTE div.editor_upload div.cell {
  513. display: table-cell;
  514. position: relative;
  515. width: 50%;
  516. vertical-align: top;
  517. }
  518. div.DTE div.editor_upload div.cell + div.cell {
  519. padding-left: 10px;
  520. }
  521. div.DTE div.editor_upload div.row + div.row div.cell {
  522. padding-top: 10px;
  523. }
  524. div.DTE div.editor_upload button.btn,
  525. div.DTE div.editor_upload input[type=file] {
  526. width: 100%;
  527. height: 2.3em;
  528. font-size: 0.8em;
  529. text-align: center;
  530. line-height: 1em;
  531. }
  532. div.DTE div.editor_upload input[type=file] {
  533. position: absolute;
  534. top: 0;
  535. left: 0;
  536. width: 100%;
  537. opacity: 0;
  538. }
  539. div.DTE div.editor_upload div.drop {
  540. position: relative;
  541. box-sizing: border-box;
  542. width: 100%;
  543. height: 100%;
  544. border: 3px dashed #ccc;
  545. border-radius: 6px;
  546. min-height: 4em;
  547. color: #999;
  548. padding-top: 3px;
  549. text-align: center;
  550. }
  551. div.DTE div.editor_upload div.drop.over {
  552. border: 3px dashed #111;
  553. color: #111;
  554. }
  555. div.DTE div.editor_upload div.drop span {
  556. max-width: 75%;
  557. font-size: 0.85em;
  558. line-height: 1em;
  559. }
  560. div.DTE div.editor_upload div.rendered img {
  561. max-width: 8em;
  562. margin: 0 auto;
  563. }
  564. div.DTE div.editor_upload.noDrop div.drop {
  565. display: none;
  566. }
  567. div.DTE div.editor_upload.noDrop div.row.second {
  568. display: none;
  569. }
  570. div.DTE div.editor_upload.noDrop div.rendered {
  571. margin-top: 10px;
  572. }
  573. div.DTE div.editor_upload.noClear div.clearValue button {
  574. display: none;
  575. }
  576. div.DTE div.editor_upload.multi div.cell {
  577. display: block;
  578. width: 100%;
  579. }
  580. div.DTE div.editor_upload.multi div.cell div.drop {
  581. min-height: 0;
  582. padding-bottom: 5px;
  583. }
  584. div.DTE div.editor_upload.multi div.clearValue {
  585. display: none;
  586. }
  587. div.DTE div.editor_upload.multi ul {
  588. list-style-type: none;
  589. margin: 0;
  590. padding: 0;
  591. }
  592. div.DTE div.editor_upload.multi ul li {
  593. position: relative;
  594. margin-top: 0.5em;
  595. }
  596. div.DTE div.editor_upload.multi ul li:first-child {
  597. margin-top: 0;
  598. }
  599. div.DTE div.editor_upload.multi ul li img {
  600. vertical-align: middle;
  601. }
  602. div.DTE div.editor_upload.multi ul li button {
  603. position: absolute;
  604. width: 40px;
  605. right: 0;
  606. top: 50%;
  607. margin-top: -1.5em;
  608. }
  609. div.editor-datetime {
  610. position: absolute;
  611. background-color: white;
  612. z-index: 2050;
  613. border: 1px solid #ccc;
  614. box-shadow: 0 5px 15px -5px rgba(0, 0, 0, 0.5);
  615. padding-bottom: 5px;
  616. }
  617. div.editor-datetime div.editor-datetime-title {
  618. text-align: center;
  619. padding: 5px 0px 3px;
  620. }
  621. div.editor-datetime table {
  622. border-spacing: 0;
  623. margin: 6px 13px;
  624. }
  625. div.editor-datetime table th {
  626. font-size: 0.8em;
  627. color: #777;
  628. font-weight: normal;
  629. width: 14.285714286%;
  630. padding: 0 0 4px 0;
  631. text-align: center;
  632. }
  633. div.editor-datetime table td {
  634. font-size: 0.9em;
  635. color: #444;
  636. padding: 0;
  637. }
  638. div.editor-datetime table td.day {
  639. text-align: right;
  640. background: #f5f5f5;
  641. }
  642. div.editor-datetime table td.day.disabled {
  643. color: #aaa;
  644. background: white;
  645. }
  646. div.editor-datetime table td.day.today {
  647. background-color: #ddd;
  648. }
  649. div.editor-datetime table td.day.today button {
  650. font-weight: bold;
  651. }
  652. div.editor-datetime table td.day.selected button {
  653. background: #4E6CA3;
  654. color: white;
  655. border-radius: 2px;
  656. }
  657. div.editor-datetime table td.day button:hover {
  658. background: #ff8000;
  659. color: white;
  660. border-radius: 2px;
  661. }
  662. div.editor-datetime table td.editor-datetime-week {
  663. font-size: 0.7em;
  664. }
  665. div.editor-datetime table button {
  666. width: 100%;
  667. box-sizing: border-box;
  668. border: none;
  669. background: transparent;
  670. font-size: inherit;
  671. color: inherit;
  672. text-align: inherit;
  673. padding: 5px 9px;
  674. cursor: pointer;
  675. margin: 0;
  676. }
  677. div.editor-datetime table.weekNumber th {
  678. width: 12.5%;
  679. }
  680. div.editor-datetime div.editor-datetime-label {
  681. position: relative;
  682. display: inline-block;
  683. height: 30px;
  684. padding: 5px 6px;
  685. border: 1px solid transparent;
  686. box-sizing: border-box;
  687. cursor: pointer;
  688. }
  689. div.editor-datetime div.editor-datetime-label:hover {
  690. border: 1px solid #ddd;
  691. border-radius: 2px;
  692. background-color: #f5f5f5;
  693. }
  694. div.editor-datetime div.editor-datetime-label select {
  695. position: absolute;
  696. top: 6px;
  697. left: 0;
  698. cursor: pointer;
  699. opacity: 0;
  700. -ms-filter: "alpha(opacity=0)";
  701. }
  702. div.editor-datetime div.editor-datetime-time {
  703. text-align: center;
  704. }
  705. div.editor-datetime div.editor-datetime-time > span {
  706. vertical-align: middle;
  707. }
  708. div.editor-datetime div.editor-datetime-time div.editor-datetime-timeblock {
  709. display: inline-block;
  710. vertical-align: middle;
  711. }
  712. div.editor-datetime div.editor-datetime-iconLeft,
  713. div.editor-datetime div.editor-datetime-iconRight,
  714. div.editor-datetime div.editor-datetime-iconUp,
  715. div.editor-datetime div.editor-datetime-iconDown {
  716. width: 30px;
  717. height: 30px;
  718. background-position: center;
  719. background-repeat: no-repeat;
  720. opacity: 0.3;
  721. overflow: hidden;
  722. box-sizing: border-box;
  723. }
  724. div.editor-datetime div.editor-datetime-iconLeft:hover,
  725. div.editor-datetime div.editor-datetime-iconRight:hover,
  726. div.editor-datetime div.editor-datetime-iconUp:hover,
  727. div.editor-datetime div.editor-datetime-iconDown:hover {
  728. border: 1px solid #ccc;
  729. border-radius: 2px;
  730. background-color: #f0f0f0;
  731. opacity: 0.6;
  732. }
  733. div.editor-datetime div.editor-datetime-iconLeft button,
  734. div.editor-datetime div.editor-datetime-iconRight button,
  735. div.editor-datetime div.editor-datetime-iconUp button,
  736. div.editor-datetime div.editor-datetime-iconDown button {
  737. border: none;
  738. background: transparent;
  739. text-indent: 30px;
  740. height: 100%;
  741. width: 100%;
  742. cursor: pointer;
  743. }
  744. div.editor-datetime div.editor-datetime-iconLeft {
  745. position: absolute;
  746. top: 5px;
  747. left: 5px;
  748. background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABQAAAAeCAYAAAAsEj5rAAAAUklEQVR42u3VMQoAIBADQf8Pgj+OD9hG2CtONJB2ymQkKe0HbwAP0xucDiQWARITIDEBEnMgMQ8S8+AqBIl6kKgHiXqQqAeJepBo/z38J/U0uAHlaBkBl9I4GwAAAABJRU5ErkJggg==");
  749. }
  750. div.editor-datetime div.editor-datetime-iconRight {
  751. position: absolute;
  752. top: 5px;
  753. right: 5px;
  754. background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABQAAAAeCAYAAAAsEj5rAAAAU0lEQVR42u3VOwoAMAgE0dwfAnNjU26bYkBCFGwfiL9VVWoO+BJ4Gf3gtsEKKoFBNTCoCAYVwaAiGNQGMUHMkjGbgjk2mIONuXo0nC8XnCf1JXgArVIZAQh5TKYAAAAASUVORK5CYII=");
  755. }
  756. div.editor-datetime div.editor-datetime-iconUp {
  757. height: 20px;
  758. background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAB4AAAALCAMAAABf9c24AAAAFVBMVEX///99fX1+fn57e3t6enoAAAAAAAC73bqPAAAABnRSTlMAYmJkZt92bnysAAAAL0lEQVR4AWOgJmBhxCvLyopHnpmVjY2VCadeoCxIHrcsWJ4RlyxCHlMWCTBRJxwAjrIBDMWSiM0AAAAASUVORK5CYII=");
  759. }
  760. div.editor-datetime div.editor-datetime-iconDown {
  761. height: 20px;
  762. background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAB4AAAALCAMAAABf9c24AAAAFVBMVEX///99fX1+fn57e3t6enoAAAAAAAC73bqPAAAABnRSTlMAYmJkZt92bnysAAAAMElEQVR4AWOgDmBiRQIsmPKMrGxQgJDFlEfIYpoPk8Utz8qM232MYFfhkQfKUg8AANefAQxecJ58AAAAAElFTkSuQmCC");
  763. }
  764. div.DTE {
  765. font-size: 0.91em;
  766. }
  767. div.DTE div.DTE_Header {
  768. display: none;
  769. }
  770. div.DTE div.DTE_Body {
  771. padding: 0;
  772. }
  773. div.DTE div.DTE_Body div.DTE_Body_Content {
  774. overflow: hidden;
  775. }
  776. div.DTE div.DTE_Body div.DTE_Body_Content div.DTE_Field {
  777. padding: 5px 5%;
  778. }
  779. div.DTE div.DTE_Footer {
  780. display: none;
  781. }
  782. div.DTE div.DTE_Form_Error {
  783. padding-top: 1em;
  784. color: red;
  785. display: none;
  786. color: #b11f1f;
  787. }