timesheet source code
Nie możesz wybrać więcej, niż 25 tematów Tematy muszą się zaczynać od litery lub cyfry, mogą zawierać myślniki ('-') i mogą mieć do 35 znaków.

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