timesheet source code
Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.

999 lines
23KB

  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 swing {
  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.filtered span,
  487. div.week2.filtered span,
  488. div.week1.filtered div.week1color,
  489. div.week2.filtered div.week2color
  490. {
  491. visibility: hidden;
  492. }
  493. div.week1 {
  494. position: relative;
  495. left: -10px;
  496. }
  497. div.week2 {
  498. position: relative;
  499. left: 10px;
  500. }
  501. div.week1 > div,
  502. div.week2 > div {
  503. display: inline-block;
  504. text-align: center;
  505. width: 10%;
  506. height: 40px;
  507. margin-top: 5px;
  508. font-weight: bolder;
  509. border-radius: 10px;
  510. }
  511. div.week1 div:hover,
  512. div.week2 div:hover {
  513. cursor: pointer;
  514. box-shadow: 0px 0px 10px red;
  515. }
  516. div.week1 > div {
  517. box-shadow: 0px 0px 10px white inset;
  518. }
  519. .week1color {
  520. color: black;
  521. /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#ebe9f9+0,d8d0ef+50,cec7ec+51,c1bfea+100;Purple+3D+%231 */
  522. background: #ebe9f9; /* Old browsers */
  523. background: -moz-linear-gradient(top, #ebe9f9 0%, #d8d0ef 50%, #cec7ec 51%, #c1bfea 100%); /* FF3.6-15 */
  524. background: -webkit-linear-gradient(top, #ebe9f9 0%,#d8d0ef 50%,#cec7ec 51%,#c1bfea 100%); /* Chrome10-25,Safari5.1-6 */
  525. background: linear-gradient(to bottom, #ebe9f9 0%,#d8d0ef 50%,#cec7ec 51%,#c1bfea 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  526. filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ebe9f9', endColorstr='#c1bfea',GradientType=0 ); /* IE6-9 */
  527. }
  528. div.week2 > div {
  529. box-shadow: 0px 0px 10px white inset;
  530. }
  531. .week2color {
  532. color: white;
  533. /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#627d4d+0,1f3b08+100;Olive+3D */
  534. background: #627d4d; /* Old browsers */
  535. background: -moz-linear-gradient(top, #627d4d 0%, #1f3b08 100%); /* FF3.6-15 */
  536. background: -webkit-linear-gradient(top, #627d4d 0%,#1f3b08 100%); /* Chrome10-25,Safari5.1-6 */
  537. background: linear-gradient(to bottom, #627d4d 0%,#1f3b08 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  538. filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#627d4d', endColorstr='#1f3b08',GradientType=0 ); /* IE6-9 */
  539. }
  540. div.assignment > div {
  541. color: navy;
  542. background-color: white;
  543. font-size: 20px;
  544. font-weight: lighter;
  545. border: 1px dotted lightgrey;
  546. }
  547. /* peple item card*/
  548. .peopleitem div span.checked {
  549. color: orange;
  550. }
  551. .peopleitem div.card div.front > div[name="title"] {
  552. height: auto;
  553. text-align: center;
  554. background-color: lightgrey;
  555. }
  556. div.front > span[name='icon'] {
  557. width: 100%;
  558. height: 15px;
  559. background-color: dimgrey;
  560. color: white;
  561. }
  562. div.back > span.icon {
  563. width: 100%;
  564. background-color: lightgrey;
  565. color: dimgrey;
  566. }
  567. div.front > span.badge,
  568. div.back > span.badge {
  569. border-radius: 50%;
  570. display: inline-block;
  571. padding-left: 8px;
  572. padding-right: 8px;
  573. text-align: center;
  574. position: absolute;
  575. right: -5px;
  576. top: -5px;
  577. }
  578. span.badge.blue {
  579. color: #fff;
  580. box-shadow: 1px 1px 10px black;
  581. background-color: black;
  582. }
  583. span.badge.pink {
  584. color: black;
  585. box-shadow: 1px 1px 10px white;
  586. background-color: white;
  587. }
  588. /* div table */
  589. div.blueTable {
  590. border: 1px solid #1C6EA4;
  591. background-color: white;
  592. width: 100%;
  593. text-align: left;
  594. border-collapse: collapse;
  595. border: 0px;
  596. }
  597. div.blueTable.emptyrecord {
  598. background-color: #eeeeee;
  599. }
  600. .divTable.blueTable .divTableCell,
  601. .divTable.blueTable .divTableHead,
  602. {
  603. border: 1px solid #AAAAAA;
  604. padding: 3px 2px;
  605. }
  606. .divTable.blueTable .divTableBody .divTableCell {
  607. font-size: 15px;
  608. border-bottom: 1px lightgrey solid;
  609. border-right: 1px lightgrey dotted;
  610. vertical-align: middle;
  611. }
  612. .divTable.blueTable .divTableRow:nth-child(even) {
  613. background: #D0E4F5;
  614. }
  615. .divTable.blueTable .divTableHeading {
  616. background: #1C6EA4;
  617. background: -moz-linear-gradient(top, #5592bb 0%, #327cad 66%, #1C6EA4 100%);
  618. background: -webkit-linear-gradient(top, #5592bb 0%, #327cad 66%, #1C6EA4 100%);
  619. background: linear-gradient(to bottom, #5592bb 0%, #327cad 66%, #1C6EA4 100%);
  620. border-bottom: 2px solid #444444;
  621. }
  622. .divTable.blueTable .divTableHeading .divTableHead {
  623. font-size: 15px;
  624. font-weight: bold;
  625. color: #FFFFFF;
  626. border-left: 2px solid #D0E4F5;
  627. }
  628. .divTable.blueTable .divTableHeading .divTableHead:first-child {
  629. border-left: none;
  630. }
  631. .blueTable .tableFootStyle {
  632. font-size: 14px;
  633. font-weight: bold;
  634. color: #FFFFFF;
  635. background: #D0E4F5;
  636. background: -moz-linear-gradient(top, #dcebf7 0%, #d4e6f6 66%, #D0E4F5 100%);
  637. background: -webkit-linear-gradient(top, #dcebf7 0%, #d4e6f6 66%, #D0E4F5 100%);
  638. background: linear-gradient(to bottom, #dcebf7 0%, #d4e6f6 66%, #D0E4F5 100%);
  639. border-top: 2px solid #444444;
  640. }
  641. .blueTable .tableFootStyle {
  642. font-size: 14px;
  643. }
  644. .blueTable .tableFootStyle .links {
  645. text-align: right;
  646. }
  647. .blueTable .tableFootStyle .links a {
  648. display: inline-block;
  649. background: #1C6EA4;
  650. color: #FFFFFF;
  651. padding: 2px 8px;
  652. border-radius: 5px;
  653. }
  654. .blueTable.outerTableFooter {
  655. border-top: none;
  656. }
  657. .blueTable.outerTableFooter .tableFootStyle {
  658. padding: 3px 5px;
  659. }
  660. /* DivTable.com */
  661. .divTable {
  662. display: table;
  663. margin: 3px 0px 3px 0px;
  664. }
  665. .divTable.highlight {
  666. box-shadow: 0px 0px 10px green;
  667. }
  668. .divTable.highlight div {
  669. background-color: lightyellow !important;
  670. }
  671. .divTable.invalidjob.highlight {
  672. box-shadow: 1px 1px 10px #f50202;
  673. }
  674. .divTable.highlight.newcopy {
  675. box-shadow: 1px 1px 10px orange;
  676. border: 5px orange solid;
  677. }
  678. .divTableRow {
  679. display: table-row;
  680. }
  681. .divTableRow.errmsg {
  682. background-color: white;
  683. font-weight: bolder;
  684. color: red;
  685. }
  686. .divTableHeading {
  687. display: table-header-group;
  688. }
  689. .divTableCell,
  690. .divTableHead {
  691. display: table-cell;
  692. }
  693. .divTableHeading {
  694. display: table-header-group;
  695. }
  696. .divTableFoot {
  697. display: table-footer-group;
  698. }
  699. .divTableBody {
  700. display: table-row-group;
  701. }
  702. /* customized part of div table */
  703. div.sheettableheader {
  704. margin-top: 0px;
  705. height: 36px;
  706. overflow-x: hidden;
  707. overflow-y: scroll;
  708. }
  709. div.btos,
  710. div.bstart,
  711. div.bfinish,
  712. div.brate,
  713. div.bstaff,
  714. div.bclient,
  715. div.bconfirmed,
  716. div.bsave,
  717. div.brating,
  718. div.bdelete {
  719. width: 10%;
  720. height: 30px;
  721. }
  722. div.btos {
  723. width: 20%;
  724. }
  725. div.bstart,
  726. div.bfinish {
  727. width: 11%;
  728. }
  729. div.brate {
  730. width: 10%;
  731. max-width: 20px;
  732. }
  733. div.brate.error{
  734. position:relative;
  735. background-color: red !important;
  736. animation: swing 1s linear infinite;
  737. }
  738. div.error::after{
  739. position:absolute;
  740. right:0px;
  741. bottom:0px;
  742. color:red;
  743. font-family: "ticons";
  744. font-weight: 900;
  745. content: "\f071";
  746. animation: blinker 0.3s linear infinite;
  747. }
  748. .divTable div > select {
  749. width: 100%;
  750. height: 100%;
  751. }
  752. div.bdelete,
  753. div.bsave,
  754. div.bconfirmed {
  755. text-align: center;
  756. width: 5%;
  757. }
  758. div.brating {
  759. text-align: center;
  760. cursor: pointer;
  761. }
  762. .brating {
  763. unicode-bidi: bidi-override;
  764. direction: rtl;
  765. }
  766. div.workspace .brating > span:hover:before,
  767. div.workspace .brating > span:hover ~ span:before {
  768. content: "\2605";
  769. position: absolute;
  770. }
  771. div.bsave span.ticon-copy {
  772. display: none;
  773. }
  774. div.jobTable.saved div.bsave span.ticon-copy {
  775. display: inline-block;
  776. border: 3px solid orange;
  777. padding: 5px;
  778. border-radius: 20px;
  779. color: orange;
  780. }
  781. div.bsave span.ticon-save {
  782. display: inline-block;
  783. border: 3px solid lightgrey;
  784. padding: 5px;
  785. border-radius: 5px;
  786. color: black;
  787. cursor: pointer;
  788. }
  789. div.jobTable.saved div.bsave span.ticon-save {
  790. display: none;
  791. }
  792. div.jobTable.saved div{
  793. background-color: transparent;
  794. }
  795. div.jobTable.dirty div.bsave{
  796. background-color: lightyellow;
  797. }
  798. div.jobTable.dirty div.bsave span{
  799. animation-duration: 0.3s;
  800. animation-timing-function: linear;
  801. animation-delay: 0s;
  802. animation-iteration-count: 5;
  803. animation-direction: normal;
  804. animation-fill-mode: none;
  805. animation-play-state: running;
  806. animation-name: blinker;
  807. }
  808. div.bdelete span.ticon-trash {
  809. display: inline-block;
  810. border: 3px solid lightgrey;
  811. padding: 5px;
  812. border-radius: 5px;
  813. color: red;
  814. cursor: pointer;
  815. }
  816. div.workspace div > span:hover {
  817. box-shadow: 0px 0px 10px black;
  818. }
  819. div.divTableHeading div > span:hover {
  820. cursor: pointer;
  821. animation: blinker 0.3s linear infinite;
  822. }
  823. /* short code for the table */
  824. div.btos select,
  825. div.bstart input,
  826. div.bfinish input {
  827. width: 100%;
  828. height: 98%;
  829. }
  830. div.divTable.validjob {
  831. border: 0px solid white;
  832. }
  833. div.divTable.invalidjob {
  834. border-left: 2px solid red;
  835. border-right: 2px solid red;
  836. }
  837. div.divTable .invalid {
  838. background-color: yellow;
  839. }
  840. /* end of div table */
  841. /* pop up message box */
  842. .bts_message .ult_modal-body {
  843. height: 50vh;
  844. overflow: scroll;
  845. }
  846. .bts_message .ult_modal-body .sent {
  847. color: green;
  848. }
  849. .bts_message .ult_modal-body .nojob {
  850. color: dimgrey;
  851. }
  852. .bts_message .ult_modal-body .error {
  853. color: red;
  854. }
  855. .bts_message .ult_modal-body .span {
  856. font-weight: 900;
  857. }