timesheet source code
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

1072 lignes
24KB

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