timesheet source code
Du kannst nicht mehr als 25 Themen auswählen Themen müssen entweder mit einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.

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