timesheet source code
Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

980 lines
22KB

  1. html,
  2. body {
  3. margin: 0px !important;
  4. overflow: hidden;
  5. }
  6. .bts_hidden {
  7. z-index: -1;
  8. }
  9. .blink_me {
  10. animation: blinker 0.3s linear infinite;
  11. }
  12. @keyframes blinker {
  13. 50% {
  14. opacity: 0;
  15. }
  16. }
  17. @keyframes bolder {
  18. 0% { padding-left:0px; background-color:yellow;}
  19. 50% { padding-left:10px; background-color: lightyellow;}
  20. 100% { padding-left:0px; background-color:yellow;}
  21. }
  22. .titlebar_gradient {
  23. /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#f6e6b4+0,ed9017+100 */
  24. background: rgb(246,230,180); /* Old browsers */
  25. background: -moz-linear-gradient(top, rgba(246,230,180,1) 0%, rgba(237,144,23,1) 100%); /* FF3.6-15 */
  26. background: -webkit-linear-gradient(top, rgba(246,230,180,1) 0%,rgba(237,144,23,1) 100%); /* Chrome10-25,Safari5.1-6 */
  27. background: linear-gradient(to bottom, rgba(246,230,180,1) 0%,rgba(237,144,23,1) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  28. filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f6e6b4', endColorstr='#ed9017',GradientType=0 ); /* IE6-9 */
  29. }
  30. .sheettitle h1:hover {
  31. text-decoration: underline;
  32. font-weight: bolder;
  33. cursor: pointer;
  34. animation: blinker 1s linear infinite;
  35. }
  36. .timesheets {
  37. width: calc(100vw - 300px);
  38. height: 100vh;
  39. margin: 0px;
  40. padding: 0px;
  41. left: 150px;
  42. position: fixed;
  43. background-color: red;
  44. overflow: hidden;
  45. }
  46. .peoplebar {
  47. position: fixed;
  48. top: 0px;
  49. width: 150px;
  50. height: 100vh;
  51. background: lightgrey;
  52. overflow: hidden;
  53. }
  54. .peoplebar.left {
  55. border-radius: 5px 0px 0px 0px;
  56. left: 0px;
  57. }
  58. .peoplebar.right {
  59. right: 0px;
  60. border-radius: 0px 5px 0px 0px;
  61. }
  62. .timesheets .sheettitle {
  63. padding-top: 8px;
  64. text-align: center;
  65. background-color: lightgrey;
  66. height: 40px;
  67. text-shadow: 1px 1px 1px #fcfcfc;
  68. }
  69. .timesheets .workspace {
  70. height: calc(100vh - 190px);
  71. background-color: white;
  72. overflow-x: hidden;
  73. overflow-y: scroll;
  74. }
  75. .timesheets .workspace img {
  76. display: block;
  77. margin-top: 140px;
  78. margin-left: auto;
  79. margin-right: auto;
  80. }
  81. .timesheets .statusbar {
  82. position: relative;
  83. height: 40px;
  84. background-color: ivory;
  85. box-shadow: 1px 1px 10px black;
  86. }
  87. /* staff search bar*/
  88. .b_search {
  89. position: relative;
  90. height: 40px;
  91. }
  92. .b_search input {
  93. margin-top: 5px;
  94. padding-left: 20px;
  95. padding-right: 20px;
  96. border-radius: 20px;
  97. box-shadow: 1px 1px 2px grey inset;
  98. height: 30px;
  99. }
  100. .b_search .ticon-search {
  101. position: absolute;
  102. top: 15px;
  103. left: 5px;
  104. }
  105. .b_search .ticon-times-circle-o {
  106. position: absolute;
  107. top: 15px;
  108. right: 5px;
  109. }
  110. .peoplebar button {
  111. width: 100%;
  112. padding: 0px;
  113. height: 20px;
  114. }
  115. .peoplebar .stafflist,
  116. .peoplebar .clientlist {
  117. height: calc(100vh - 80px);
  118. background-color: dimgrey;
  119. overflow: hidden;
  120. text-align: center;
  121. /* scroll-behavior: smooth; */
  122. }
  123. .peopleitem {
  124. position: relative;
  125. margin-top: 10px;
  126. margin-bottom: 10px;
  127. height: 100px;
  128. background: transparent;
  129. }
  130. /* hover box */
  131. div.peopleitem > label {
  132. -webkit-perspective: 1000px;
  133. perspective: 1000px;
  134. -webkit-transform-style: preserve-3d;
  135. transform-style: preserve-3d;
  136. display: block;
  137. width: 100%;
  138. height: 100px;
  139. position: absolute;
  140. left: 50%;
  141. top: 50%;
  142. -webkit-transform: translate(-50%, -50%);
  143. transform: translate(-50%, -50%);
  144. cursor: pointer;
  145. }
  146. div.peopleitem .card {
  147. position: relative;
  148. height: 100%;
  149. width: 95%;
  150. margin: auto;
  151. -webkit-transform-style: preserve-3d;
  152. transform-style: preserve-3d;
  153. -webkit-transition: all 600ms;
  154. transition: all 600ms;
  155. z-index: 20;
  156. border: 1px solid black;
  157. box-shadow: 1px 1px 10px black;
  158. }
  159. div.peopleitem .card > div {
  160. position: absolute;
  161. height: 100%;
  162. width: 100%;
  163. background: #FFF;
  164. text-align: center;
  165. /* line-height: 200px; */
  166. -webkit-backface-visibility: hidden;
  167. backface-visibility: hidden;
  168. border-radius: 2px;
  169. }
  170. div.peopleitem .card .back {
  171. background: #222;
  172. color: #FFF;
  173. -webkit-transform: rotateX(180deg);
  174. transform: rotateX(180deg);
  175. }
  176. div.peopleitem label:hover .card {
  177. -webkit-transform: rotateX(20deg);
  178. transform: rotateX(20deg);
  179. box-shadow: 0 20px 20px rgba(50,50,50,.2);
  180. }
  181. div.peopleitem input {
  182. display: none;
  183. }
  184. div.peopleitem :checked + .card {
  185. transform: rotateX(180deg);
  186. -webkit-transform: rotateX(180deg);
  187. }
  188. div.peopleitem label:hover :checked + .card {
  189. transform: rotateX(160deg);
  190. -webkit-transform: rotateX(160deg);
  191. box-shadow: 0 20px 20px rgba(255,255,255,.2);
  192. }
  193. /* end of hover box */
  194. .satusbar {
  195. position: relative;
  196. }
  197. .statusbar * {
  198. vertical-align: top;
  199. text-shadow: 1px 1px 1px #fcfcfc;
  200. }
  201. .statusbar div {
  202. position: relative;
  203. display: inline;
  204. }
  205. .statusbar .xero {
  206. width: 40px;
  207. height: 100%;
  208. margin-left: 5px;
  209. margin-right: 5px;
  210. display: inline-block;
  211. background-color: white;
  212. box-shadow: inset 0px 0px 2px dotted white;
  213. border-radius: 100px;
  214. background-image: url(../img/xero.png);
  215. background-size: 40px;
  216. box-shadow: 0px 0px 10px white;
  217. }
  218. .statusbar .wifi i,
  219. .statusbar .xero i,
  220. .statusbar .csv i {
  221. font-size: 20px;
  222. color: red;
  223. position: absolute;
  224. right: 0px;
  225. top: -5px;
  226. }
  227. .statusbar .wifi {
  228. width: 40px;
  229. height: 100%;
  230. margin-left: 0px;
  231. margin-right: 5px;
  232. display: inline-block;
  233. background-color: white;
  234. box-shadow: inset 0px 0px 2px black;
  235. border-radius: 100px;
  236. background-image: url(../img/wnet.png);
  237. background-size: 40px;
  238. box-shadow: 0px 0px 10px white;
  239. }
  240. .statusbar .csv {
  241. width: 40px;
  242. height: 100%;
  243. margin-left: 0px;
  244. margin-right: 5px;
  245. display: inline-block;
  246. background-color: white;
  247. box-shadow: inset 0px 0px 2px black;
  248. border-radius: 100px;
  249. background-image: url(../img/csv.png);
  250. background-size: 40px;
  251. box-shadow: 0px 0px 10px white;
  252. }
  253. .statusbar .xero:hover,
  254. .statusbar .wifi:hover,
  255. .statusbar .csv:hover {
  256. box-shadow: 0px 0px 3px black;
  257. }
  258. .statusbar .wages {
  259. text-align: center;
  260. width: 150px;
  261. height: 100%;
  262. display: inline-block;
  263. background-color: transparent;
  264. font-size: 24px;
  265. font-weight: bold;
  266. color: dimgrey;
  267. border: 1px dotted white;
  268. position: absolute;
  269. right: 400px;
  270. }
  271. .statusbar .workinghours {
  272. background-color: transparent;
  273. width: 175px;
  274. height: 100%;
  275. display: inline-block;
  276. position: absolute;
  277. right: 220px;
  278. }
  279. .statusbar #woh:hover {
  280. cursor: pointer;
  281. animation: blinker 0.3s linear infinite;
  282. }
  283. .workinghours label {
  284. transform: unset;
  285. left: 0;
  286. top: 0;
  287. width: 50px;
  288. height: 100%;
  289. padding: 0.5em;
  290. text-align: left;
  291. display: inline-block;
  292. color: #A974D;
  293. font-weight: bolder;
  294. line-height: 15px;
  295. background-color: transparent;
  296. margin-right: 0px;
  297. }
  298. .statusbar input {
  299. margin: 0px;
  300. width: 115px;
  301. height: 100%;
  302. display: inline-block;
  303. font-size: 24px;
  304. background: transparent;
  305. text-align: center;
  306. }
  307. .statusbar button[name='confirmschedule'] {
  308. margin-top: 5px;
  309. margin-bottom: 5px ;
  310. text-shadow: 0px 0px 2px black;
  311. width: 200px ;
  312. height: calc( 100% - 10px );
  313. font-weight: bolder;
  314. position: absolute;
  315. right: 10px;
  316. }
  317. div.sheetsheader {
  318. height: 110px;
  319. background: darkorange;
  320. position: relative;
  321. }
  322. div.prevweek {
  323. display: inline-block;
  324. height: 70px;
  325. width: 40px;
  326. font-size: 36px;
  327. padding-top: 5px;
  328. padding-left: 2px;
  329. float: left;
  330. background: darkorange;
  331. }
  332. div.prevweek span:hover,
  333. div.nextweek span:hover {
  334. box-shadow: 1px 1px 10px black;
  335. border-radius: 20px;
  336. color: black;
  337. }
  338. div.nextweek {
  339. display: inline-block;
  340. height: 70px;
  341. width: 40px;
  342. font-size: 36px;
  343. padding-top: 5px;
  344. padding-left: 4px;
  345. float: right;
  346. }
  347. div.weekly {
  348. width: calc( 100% - 80px ) ;
  349. display: inline-block;
  350. background-color: black;
  351. height: 70px;
  352. }
  353. div.weekly div {
  354. margin: 0px;
  355. }
  356. div.weekly div.weekname {
  357. position: relative;
  358. width: 170px;
  359. top: -5px;
  360. border: 2px solid grey;
  361. border-radius: 10px;
  362. text-align: center;
  363. color: white;
  364. /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#b5bdc8+0,828c95+36,28343b+100;Grey+Black+3D */
  365. background: rgb(181,189,200); /* Old browsers */
  366. background: -moz-linear-gradient(top, rgba(181,189,200,1) 0%, rgba(130,140,149,1) 36%, rgba(40,52,59,1) 100%); /* FF3.6-15 */
  367. background: -webkit-linear-gradient(top, rgba(181,189,200,1) 0%,rgba(130,140,149,1) 36%,rgba(40,52,59,1) 100%); /* Chrome10-25,Safari5.1-6 */
  368. background: linear-gradient(to bottom, rgba(181,189,200,1) 0%,rgba(130,140,149,1) 36%,rgba(40,52,59,1) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  369. filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#b5bdc8', endColorstr='#28343b',GradientType=0 ); /* IE6-9 */
  370. }
  371. div.weekly div.weekname input{
  372. width: 80px;
  373. height: 20px;
  374. border:0px;
  375. background-color:transparent;
  376. color: white;
  377. padding-left:4px;
  378. padding-right:4px;
  379. }
  380. div.weekly div.weekname input.hasDatepicker{
  381. background-image:none
  382. }
  383. div.weekly div.weekname.prev {
  384. position: absolute;
  385. left: 100px;
  386. z-index: 1;
  387. }
  388. div.weekly div.weekname.next {
  389. position: absolute;
  390. right: 100px;
  391. z-index: 1;
  392. }
  393. div.weekly >div.weekname:hover,
  394. div.weekly div[name='copyschedule']:hover {
  395. cursor: pointer;
  396. box-shadow: 0px 0px 10px #2c87f0;
  397. }
  398. div.weekly div.copyprogress {
  399. position: absolute;
  400. display: inline-block;
  401. width: calc(100% - 80px);
  402. height: 15px;
  403. top: 0px;
  404. border-radius: 2px;
  405. box-shadow: inset 1px 1px 2px black;
  406. text-align: center;
  407. /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#fefcea+0,f1da36+100;Gold+3D */
  408. background: rgb(254,252,234); /* Old browsers */
  409. background: -moz-linear-gradient(top, rgba(254,252,234,1) 0%, rgba(241,218,54,1) 100%); /* FF3.6-15 */
  410. background: -webkit-linear-gradient(top, rgba(254,252,234,1) 0%,rgba(241,218,54,1) 100%); /* Chrome10-25,Safari5.1-6 */
  411. background: linear-gradient(to bottom, rgba(254,252,234,1) 0%,rgba(241,218,54,1) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  412. filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#fefcea', endColorstr='#f1da36',GradientType=0 ); /* IE6-9 */
  413. }
  414. div.copyprogress div[name='copyschedule'] {
  415. position: relative;
  416. top: -5px;
  417. width: 150px;
  418. height: 25px;
  419. padding: 0px;
  420. border-radius: 10px;
  421. margin: auto;
  422. z-index: 1;
  423. color: white;
  424. /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#b5bdc8+0,828c95+36,28343b+100;Grey+Black+3D */
  425. background: rgb(181,189,200); /* Old browsers */
  426. background: -moz-linear-gradient(top, rgba(181,189,200,1) 0%, rgba(130,140,149,1) 36%, rgba(40,52,59,1) 100%); /* FF3.6-15 */
  427. background: -webkit-linear-gradient(top, rgba(181,189,200,1) 0%,rgba(130,140,149,1) 36%,rgba(40,52,59,1) 100%); /* Chrome10-25,Safari5.1-6 */
  428. background: linear-gradient(to bottom, rgba(181,189,200,1) 0%,rgba(130,140,149,1) 36%,rgba(40,52,59,1) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  429. filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#b5bdc8', endColorstr='#28343b',GradientType=0 ); /* IE6-9 */
  430. }
  431. #gotoweek {
  432. width: 50%;
  433. background-color: transparent;
  434. border: 0px;
  435. color: white;
  436. font-weight: 900;
  437. }
  438. div.weekdays {
  439. position: absolute;
  440. top: 15px;
  441. width: calc(100% - 80px);
  442. height: 55px;
  443. background-color: darkorange;
  444. text-align: center;
  445. }
  446. div.week1,
  447. div.week2 {
  448. display: inline-block;
  449. width: 45%;
  450. height: 55px;
  451. background-color: darkorange;
  452. text-align: justify;
  453. border: 1px dashed lightgrey;
  454. padding-left: 10px;
  455. padding-right: 10px;
  456. }
  457. div.week1:hover,
  458. div.week2:Hover {
  459. border-radius: 20px;
  460. box-shadow: 0px 0px 2px #2c87f0 inset;
  461. cursor: pointer;
  462. /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#ebf1f6+0,abd3ee+50,89c3eb+51,d5ebfb+100;Blue+Gloss+%234 */
  463. background: rgb(235,241,246); /* Old browsers */
  464. background: -moz-linear-gradient(top, rgba(235,241,246,1) 0%, rgba(171,211,238,1) 50%, rgba(137,195,235,1) 51%, rgba(213,235,251,1) 100%); /* FF3.6-15 */
  465. background: -webkit-linear-gradient(top, rgba(235,241,246,1) 0%,rgba(171,211,238,1) 50%,rgba(137,195,235,1) 51%,rgba(213,235,251,1) 100%); /* Chrome10-25,Safari5.1-6 */
  466. background: linear-gradient(to bottom, rgba(235,241,246,1) 0%,rgba(171,211,238,1) 50%,rgba(137,195,235,1) 51%,rgba(213,235,251,1) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  467. filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ebf1f6', endColorstr='#d5ebfb',GradientType=0 ); /* IE6-9 */
  468. }
  469. div.week1.filtered,
  470. div.week2.filtered {
  471. border-radius: 20px;
  472. /* background:white; */
  473. /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#ebf1f6+0,abd3ee+50,89c3eb+51,d5ebfb+100;Blue+Gloss+%234 */
  474. background: rgb(235,241,246); /* Old browsers */
  475. background: -moz-linear-gradient(top, rgba(235,241,246,1) 0%, rgba(171,211,238,1) 50%, rgba(137,195,235,1) 51%, rgba(213,235,251,1) 100%); /* FF3.6-15 */
  476. background: -webkit-linear-gradient(top, rgba(235,241,246,1) 0%,rgba(171,211,238,1) 50%,rgba(137,195,235,1) 51%,rgba(213,235,251,1) 100%); /* Chrome10-25,Safari5.1-6 */
  477. background: linear-gradient(to bottom, rgba(235,241,246,1) 0%,rgba(171,211,238,1) 50%,rgba(137,195,235,1) 51%,rgba(213,235,251,1) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  478. filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ebf1f6', endColorstr='#d5ebfb',GradientType=0 ); /* IE6-9 */
  479. }
  480. div.week1:after,
  481. div.week2:after {
  482. content: '';
  483. display: inline-block;
  484. width: 100%;
  485. }
  486. div.week1 {
  487. position: relative;
  488. left: -10px;
  489. }
  490. div.week2 {
  491. position: relative;
  492. left: 10px;
  493. }
  494. div.week1 > div,
  495. div.week2 > div {
  496. display: inline-block;
  497. text-align: center;
  498. width: 10%;
  499. height: 40px;
  500. margin-top: 5px;
  501. font-weight: bolder;
  502. border-radius: 10px;
  503. }
  504. div.week1 div:hover,
  505. div.week2 div:hover {
  506. cursor: pointer;
  507. box-shadow: 0px 0px 10px red;
  508. }
  509. div.week1 > div {
  510. box-shadow: 0px 0px 10px white inset;
  511. }
  512. .week1color {
  513. color: black;
  514. /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#ebe9f9+0,d8d0ef+50,cec7ec+51,c1bfea+100;Purple+3D+%231 */
  515. background: #ebe9f9; /* Old browsers */
  516. background: -moz-linear-gradient(top, #ebe9f9 0%, #d8d0ef 50%, #cec7ec 51%, #c1bfea 100%); /* FF3.6-15 */
  517. background: -webkit-linear-gradient(top, #ebe9f9 0%,#d8d0ef 50%,#cec7ec 51%,#c1bfea 100%); /* Chrome10-25,Safari5.1-6 */
  518. background: linear-gradient(to bottom, #ebe9f9 0%,#d8d0ef 50%,#cec7ec 51%,#c1bfea 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  519. filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ebe9f9', endColorstr='#c1bfea',GradientType=0 ); /* IE6-9 */
  520. }
  521. div.week2 > div {
  522. box-shadow: 0px 0px 10px white inset;
  523. }
  524. .week2color {
  525. color: white;
  526. /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#627d4d+0,1f3b08+100;Olive+3D */
  527. background: #627d4d; /* Old browsers */
  528. background: -moz-linear-gradient(top, #627d4d 0%, #1f3b08 100%); /* FF3.6-15 */
  529. background: -webkit-linear-gradient(top, #627d4d 0%,#1f3b08 100%); /* Chrome10-25,Safari5.1-6 */
  530. background: linear-gradient(to bottom, #627d4d 0%,#1f3b08 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  531. filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#627d4d', endColorstr='#1f3b08',GradientType=0 ); /* IE6-9 */
  532. }
  533. div.assignment > div {
  534. color: navy;
  535. background-color: white;
  536. font-size: 20px;
  537. font-weight: lighter;
  538. border: 1px dotted lightgrey;
  539. }
  540. /* peple item card*/
  541. .peopleitem div span.checked {
  542. color: orange;
  543. }
  544. .peopleitem div.card div.front > div[name="title"] {
  545. height: auto;
  546. text-align: center;
  547. background-color: lightgrey;
  548. }
  549. div.front > span[name='icon'] {
  550. width: 100%;
  551. height: 15px;
  552. background-color: dimgrey;
  553. color: white;
  554. }
  555. div.back > span.icon {
  556. width: 100%;
  557. background-color: lightgrey;
  558. color: dimgrey;
  559. }
  560. div.front > span.badge,
  561. div.back > span.badge {
  562. border-radius: 50%;
  563. display: inline-block;
  564. padding-left: 8px;
  565. padding-right: 8px;
  566. text-align: center;
  567. position: absolute;
  568. right: -5px;
  569. top: -5px;
  570. }
  571. span.badge.blue {
  572. color: #fff;
  573. box-shadow: 1px 1px 10px black;
  574. background-color: black;
  575. }
  576. span.badge.pink {
  577. color: black;
  578. box-shadow: 1px 1px 10px white;
  579. background-color: white;
  580. }
  581. /* div table */
  582. div.blueTable {
  583. border: 1px solid #1C6EA4;
  584. background-color: white;
  585. width: 100%;
  586. text-align: left;
  587. border-collapse: collapse;
  588. border: 0px;
  589. }
  590. div.blueTable.emptyrecord {
  591. background-color: #eeeeee;
  592. }
  593. .divTable.blueTable .divTableCell,
  594. .divTable.blueTable .divTableHead,
  595. {
  596. border: 1px solid #AAAAAA;
  597. padding: 3px 2px;
  598. }
  599. .divTable.blueTable .divTableBody .divTableCell {
  600. font-size: 15px;
  601. border-bottom: 1px lightgrey solid;
  602. border-right: 1px lightgrey dotted;
  603. vertical-align: middle;
  604. }
  605. .divTable.blueTable .divTableRow:nth-child(even) {
  606. background: #D0E4F5;
  607. }
  608. .divTable.blueTable .divTableHeading {
  609. background: #1C6EA4;
  610. background: -moz-linear-gradient(top, #5592bb 0%, #327cad 66%, #1C6EA4 100%);
  611. background: -webkit-linear-gradient(top, #5592bb 0%, #327cad 66%, #1C6EA4 100%);
  612. background: linear-gradient(to bottom, #5592bb 0%, #327cad 66%, #1C6EA4 100%);
  613. border-bottom: 2px solid #444444;
  614. }
  615. .divTable.blueTable .divTableHeading .divTableHead {
  616. font-size: 15px;
  617. font-weight: bold;
  618. color: #FFFFFF;
  619. border-left: 2px solid #D0E4F5;
  620. }
  621. .divTable.blueTable .divTableHeading .divTableHead:first-child {
  622. border-left: none;
  623. }
  624. .blueTable .tableFootStyle {
  625. font-size: 14px;
  626. font-weight: bold;
  627. color: #FFFFFF;
  628. background: #D0E4F5;
  629. background: -moz-linear-gradient(top, #dcebf7 0%, #d4e6f6 66%, #D0E4F5 100%);
  630. background: -webkit-linear-gradient(top, #dcebf7 0%, #d4e6f6 66%, #D0E4F5 100%);
  631. background: linear-gradient(to bottom, #dcebf7 0%, #d4e6f6 66%, #D0E4F5 100%);
  632. border-top: 2px solid #444444;
  633. }
  634. .blueTable .tableFootStyle {
  635. font-size: 14px;
  636. }
  637. .blueTable .tableFootStyle .links {
  638. text-align: right;
  639. }
  640. .blueTable .tableFootStyle .links a {
  641. display: inline-block;
  642. background: #1C6EA4;
  643. color: #FFFFFF;
  644. padding: 2px 8px;
  645. border-radius: 5px;
  646. }
  647. .blueTable.outerTableFooter {
  648. border-top: none;
  649. }
  650. .blueTable.outerTableFooter .tableFootStyle {
  651. padding: 3px 5px;
  652. }
  653. /* DivTable.com */
  654. .divTable {
  655. display: table;
  656. margin: 3px 0px 3px 0px;
  657. }
  658. .divTable.highlight {
  659. box-shadow: 0px 0px 10px green;
  660. }
  661. .divTable.highlight div {
  662. background-color: lightyellow !important;
  663. }
  664. .divTable.invalidjob.highlight {
  665. box-shadow: 1px 1px 10px #f50202;
  666. }
  667. .divTable.highlight.newcopy {
  668. box-shadow: 1px 1px 10px orange;
  669. border: 5px orange solid;
  670. }
  671. .divTableRow {
  672. display: table-row;
  673. }
  674. .divTableRow.errmsg {
  675. background-color: white;
  676. font-weight: bolder;
  677. color: red;
  678. }
  679. .divTableHeading {
  680. display: table-header-group;
  681. }
  682. .divTableCell,
  683. .divTableHead {
  684. display: table-cell;
  685. }
  686. .divTableHeading {
  687. display: table-header-group;
  688. }
  689. .divTableFoot {
  690. display: table-footer-group;
  691. }
  692. .divTableBody {
  693. display: table-row-group;
  694. }
  695. /* customized part of div table */
  696. div.sheettableheader {
  697. margin-top: 0px;
  698. height: 36px;
  699. overflow-x: hidden;
  700. overflow-y: scroll;
  701. }
  702. div.btos,
  703. div.bstart,
  704. div.bfinish,
  705. div.brate,
  706. div.bstaff,
  707. div.bclient,
  708. div.bconfirmed,
  709. div.bsave,
  710. div.brating,
  711. div.bdelete {
  712. width: 10%;
  713. height: 30px;
  714. }
  715. div.btos {
  716. width: 20%;
  717. }
  718. div.bstart,
  719. div.bfinish {
  720. width: 11%;
  721. }
  722. div.brate {
  723. width: 10%;
  724. max-width: 20px;
  725. }
  726. div.brate.error{
  727. background-color: red !important;
  728. animation: bolder 1s linear infinite;
  729. }
  730. .divTable div > select {
  731. width: 100%;
  732. height: 100%;
  733. }
  734. div.bdelete,
  735. div.bsave,
  736. div.bconfirmed {
  737. text-align: center;
  738. width: 5%;
  739. }
  740. div.brating {
  741. text-align: center;
  742. cursor: pointer;
  743. }
  744. .brating {
  745. unicode-bidi: bidi-override;
  746. direction: rtl;
  747. }
  748. div.workspace .brating > span:hover:before,
  749. div.workspace .brating > span:hover ~ span:before {
  750. content: "\2605";
  751. position: absolute;
  752. }
  753. div.bsave span.ticon-copy {
  754. display: none;
  755. }
  756. div.jobTable.saved div.bsave span.ticon-copy {
  757. display: inline-block;
  758. border: 3px solid orange;
  759. padding: 5px;
  760. border-radius: 20px;
  761. color: orange;
  762. }
  763. div.bsave span.ticon-save {
  764. display: inline-block;
  765. border: 3px solid lightgrey;
  766. padding: 5px;
  767. border-radius: 5px;
  768. color: black;
  769. cursor: pointer;
  770. }
  771. div.jobTable.saved div.bsave span.ticon-save {
  772. display: none;
  773. }
  774. div.jobTable.saved div{
  775. background-color: transparent;
  776. }
  777. div.jobTable.dirty div.bsave{
  778. background-color: lightyellow;
  779. }
  780. div.jobTable.dirty div.bsave span{
  781. animation-duration: 0.3s;
  782. animation-timing-function: linear;
  783. animation-delay: 0s;
  784. animation-iteration-count: 5;
  785. animation-direction: normal;
  786. animation-fill-mode: none;
  787. animation-play-state: running;
  788. animation-name: blinker;
  789. }
  790. div.bdelete span.ticon-trash {
  791. display: inline-block;
  792. border: 3px solid lightgrey;
  793. padding: 5px;
  794. border-radius: 5px;
  795. color: red;
  796. cursor: pointer;
  797. }
  798. div.workspace div > span:hover {
  799. box-shadow: 0px 0px 10px black;
  800. }
  801. div.divTableHeading div > span:hover {
  802. cursor: pointer;
  803. animation: blinker 0.3s linear infinite;
  804. }
  805. /* short code for the table */
  806. div.btos select,
  807. div.bstart input,
  808. div.bfinish input {
  809. width: 100%;
  810. height: 98%;
  811. }
  812. div.divTable.validjob {
  813. border: 0px solid white;
  814. }
  815. div.divTable.invalidjob {
  816. border-left: 2px solid red;
  817. border-right: 2px solid red;
  818. }
  819. div.divTable .invalid {
  820. background-color: yellow;
  821. }
  822. /* end of div table */
  823. /* pop up message box */
  824. .bts_message .ult_modal-body {
  825. height: 50vh;
  826. overflow: scroll;
  827. }
  828. .bts_message .ult_modal-body .sent {
  829. color: green;
  830. }
  831. .bts_message .ult_modal-body .nojob {
  832. color: dimgrey;
  833. }
  834. .bts_message .ult_modal-body .error {
  835. color: red;
  836. }
  837. .bts_message .ult_modal-body .span {
  838. font-weight: 900;
  839. }