timesheet source code
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

946 行
21KB

  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(../img/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(../img/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(../img/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 input.hasDatepicker{
  376. background-image:none
  377. }
  378. div.weekly div.weekname.prev {
  379. position: absolute;
  380. left: 100px;
  381. z-index: 1;
  382. }
  383. div.weekly div.weekname.next {
  384. position: absolute;
  385. right: 100px;
  386. z-index: 1;
  387. }
  388. div.weekly >div.weekname:hover,
  389. div.weekly div[name='copyschedule']:hover {
  390. cursor: pointer;
  391. box-shadow: 0px 0px 10px #2c87f0;
  392. }
  393. div.weekly div.copyprogress {
  394. position: absolute;
  395. display: inline-block;
  396. width: calc(100% - 80px);
  397. height: 15px;
  398. top: 0px;
  399. border-radius: 2px;
  400. box-shadow: inset 1px 1px 2px black;
  401. text-align: center;
  402. /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#fefcea+0,f1da36+100;Gold+3D */
  403. background: rgb(254,252,234); /* Old browsers */
  404. background: -moz-linear-gradient(top, rgba(254,252,234,1) 0%, rgba(241,218,54,1) 100%); /* FF3.6-15 */
  405. background: -webkit-linear-gradient(top, rgba(254,252,234,1) 0%,rgba(241,218,54,1) 100%); /* Chrome10-25,Safari5.1-6 */
  406. background: linear-gradient(to bottom, rgba(254,252,234,1) 0%,rgba(241,218,54,1) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  407. filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#fefcea', endColorstr='#f1da36',GradientType=0 ); /* IE6-9 */
  408. }
  409. div.copyprogress div[name='copyschedule'] {
  410. position: relative;
  411. top: -5px;
  412. width: 150px;
  413. height: 25px;
  414. padding: 0px;
  415. border-radius: 10px;
  416. margin: auto;
  417. z-index: 1;
  418. color: white;
  419. /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#b5bdc8+0,828c95+36,28343b+100;Grey+Black+3D */
  420. background: rgb(181,189,200); /* Old browsers */
  421. 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 */
  422. 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 */
  423. 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+ */
  424. filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#b5bdc8', endColorstr='#28343b',GradientType=0 ); /* IE6-9 */
  425. }
  426. #gotoweek {
  427. width: 50%;
  428. background-color: transparent;
  429. border: 0px;
  430. color: white;
  431. font-weight: 900;
  432. }
  433. div.weekdays {
  434. position: absolute;
  435. top: 15px;
  436. width: calc(100% - 80px);
  437. height: 55px;
  438. background-color: darkorange;
  439. text-align: center;
  440. }
  441. div.week1,
  442. div.week2 {
  443. display: inline-block;
  444. width: 45%;
  445. height: 55px;
  446. background-color: darkorange;
  447. text-align: justify;
  448. border: 1px dashed lightgrey;
  449. padding-left: 10px;
  450. padding-right: 10px;
  451. }
  452. div.week1:hover,
  453. div.week2:Hover {
  454. border-radius: 20px;
  455. box-shadow: 0px 0px 2px #2c87f0 inset;
  456. cursor: pointer;
  457. /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#ebf1f6+0,abd3ee+50,89c3eb+51,d5ebfb+100;Blue+Gloss+%234 */
  458. background: rgb(235,241,246); /* Old browsers */
  459. 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 */
  460. 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 */
  461. 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+ */
  462. filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ebf1f6', endColorstr='#d5ebfb',GradientType=0 ); /* IE6-9 */
  463. }
  464. div.week1.filtered,
  465. div.week2.filtered {
  466. border-radius: 20px;
  467. /* background:white; */
  468. /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#ebf1f6+0,abd3ee+50,89c3eb+51,d5ebfb+100;Blue+Gloss+%234 */
  469. background: rgb(235,241,246); /* Old browsers */
  470. 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 */
  471. 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 */
  472. 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+ */
  473. filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ebf1f6', endColorstr='#d5ebfb',GradientType=0 ); /* IE6-9 */
  474. }
  475. div.week1:after,
  476. div.week2:after {
  477. content: '';
  478. display: inline-block;
  479. width: 100%;
  480. }
  481. div.week1 {
  482. position: relative;
  483. left: -10px;
  484. }
  485. div.week2 {
  486. position: relative;
  487. left: 10px;
  488. }
  489. div.week1 > div,
  490. div.week2 > div {
  491. display: inline-block;
  492. text-align: center;
  493. width: 10%;
  494. height: 40px;
  495. margin-top: 5px;
  496. font-weight: bolder;
  497. border-radius: 10px;
  498. }
  499. div.week1 div:hover,
  500. div.week2 div:hover {
  501. cursor: pointer;
  502. box-shadow: 0px 0px 10px red;
  503. }
  504. div.week1 > div {
  505. box-shadow: 0px 0px 10px white inset;
  506. }
  507. .week1color {
  508. color: black;
  509. /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#ebe9f9+0,d8d0ef+50,cec7ec+51,c1bfea+100;Purple+3D+%231 */
  510. background: #ebe9f9; /* Old browsers */
  511. background: -moz-linear-gradient(top, #ebe9f9 0%, #d8d0ef 50%, #cec7ec 51%, #c1bfea 100%); /* FF3.6-15 */
  512. background: -webkit-linear-gradient(top, #ebe9f9 0%,#d8d0ef 50%,#cec7ec 51%,#c1bfea 100%); /* Chrome10-25,Safari5.1-6 */
  513. background: linear-gradient(to bottom, #ebe9f9 0%,#d8d0ef 50%,#cec7ec 51%,#c1bfea 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  514. filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ebe9f9', endColorstr='#c1bfea',GradientType=0 ); /* IE6-9 */
  515. }
  516. div.week2 > div {
  517. box-shadow: 0px 0px 10px white inset;
  518. }
  519. .week2color {
  520. color: white;
  521. /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#627d4d+0,1f3b08+100;Olive+3D */
  522. background: #627d4d; /* Old browsers */
  523. background: -moz-linear-gradient(top, #627d4d 0%, #1f3b08 100%); /* FF3.6-15 */
  524. background: -webkit-linear-gradient(top, #627d4d 0%,#1f3b08 100%); /* Chrome10-25,Safari5.1-6 */
  525. background: linear-gradient(to bottom, #627d4d 0%,#1f3b08 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  526. filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#627d4d', endColorstr='#1f3b08',GradientType=0 ); /* IE6-9 */
  527. }
  528. div.assignment > div {
  529. color: navy;
  530. background-color: white;
  531. font-size: 20px;
  532. font-weight: lighter;
  533. border: 1px dotted lightgrey;
  534. }
  535. /* peple item card*/
  536. .peopleitem div span.checked {
  537. color: orange;
  538. }
  539. .peopleitem div.card div.front > div[name="title"] {
  540. height: auto;
  541. text-align: center;
  542. background-color: lightgrey;
  543. }
  544. div.front > span[name='icon'] {
  545. width: 100%;
  546. height: 15px;
  547. background-color: dimgrey;
  548. color: white;
  549. }
  550. div.back > span.icon {
  551. width: 100%;
  552. background-color: lightgrey;
  553. color: dimgrey;
  554. }
  555. div.front > span.badge,
  556. div.back > span.badge {
  557. border-radius: 50%;
  558. display: inline-block;
  559. padding-left: 8px;
  560. padding-right: 8px;
  561. text-align: center;
  562. position: absolute;
  563. right: -5px;
  564. top: -5px;
  565. }
  566. span.badge.blue {
  567. color: #fff;
  568. box-shadow: 1px 1px 10px black;
  569. background-color: black;
  570. }
  571. span.badge.pink {
  572. color: black;
  573. box-shadow: 1px 1px 10px white;
  574. background-color: white;
  575. }
  576. /* div table */
  577. div.blueTable {
  578. border: 1px solid #1C6EA4;
  579. background-color: white;
  580. width: 100%;
  581. text-align: left;
  582. border-collapse: collapse;
  583. border: 0px;
  584. }
  585. div.blueTable.emptyrecord {
  586. background-color: #eeeeee;
  587. }
  588. .divTable.blueTable .divTableCell,
  589. .divTable.blueTable .divTableHead,
  590. {
  591. border: 1px solid #AAAAAA;
  592. padding: 3px 2px;
  593. }
  594. .divTable.blueTable .divTableBody .divTableCell {
  595. font-size: 15px;
  596. }
  597. .divTable.blueTable .divTableRow:nth-child(even) {
  598. background: #D0E4F5;
  599. }
  600. .divTable.blueTable .divTableHeading {
  601. background: #1C6EA4;
  602. background: -moz-linear-gradient(top, #5592bb 0%, #327cad 66%, #1C6EA4 100%);
  603. background: -webkit-linear-gradient(top, #5592bb 0%, #327cad 66%, #1C6EA4 100%);
  604. background: linear-gradient(to bottom, #5592bb 0%, #327cad 66%, #1C6EA4 100%);
  605. border-bottom: 2px solid #444444;
  606. }
  607. .divTable.blueTable .divTableHeading .divTableHead {
  608. font-size: 15px;
  609. font-weight: bold;
  610. color: #FFFFFF;
  611. border-left: 2px solid #D0E4F5;
  612. }
  613. .divTable.blueTable .divTableHeading .divTableHead:first-child {
  614. border-left: none;
  615. }
  616. .blueTable .tableFootStyle {
  617. font-size: 14px;
  618. font-weight: bold;
  619. color: #FFFFFF;
  620. background: #D0E4F5;
  621. background: -moz-linear-gradient(top, #dcebf7 0%, #d4e6f6 66%, #D0E4F5 100%);
  622. background: -webkit-linear-gradient(top, #dcebf7 0%, #d4e6f6 66%, #D0E4F5 100%);
  623. background: linear-gradient(to bottom, #dcebf7 0%, #d4e6f6 66%, #D0E4F5 100%);
  624. border-top: 2px solid #444444;
  625. }
  626. .blueTable .tableFootStyle {
  627. font-size: 14px;
  628. }
  629. .blueTable .tableFootStyle .links {
  630. text-align: right;
  631. }
  632. .blueTable .tableFootStyle .links a {
  633. display: inline-block;
  634. background: #1C6EA4;
  635. color: #FFFFFF;
  636. padding: 2px 8px;
  637. border-radius: 5px;
  638. }
  639. .blueTable.outerTableFooter {
  640. border-top: none;
  641. }
  642. .blueTable.outerTableFooter .tableFootStyle {
  643. padding: 3px 5px;
  644. }
  645. /* DivTable.com */
  646. .divTable {
  647. display: table;
  648. margin: 3px 0px 3px 0px;
  649. }
  650. .divTable.highlight {
  651. box-shadow: 1px 1px 10px green;
  652. }
  653. .divTable.invalidjob.highlight {
  654. box-shadow: 1px 1px 10px #f50202;
  655. }
  656. .divTable.highlight.newcopy {
  657. box-shadow: 1px 1px 10px orange;
  658. border: 5px orange solid;
  659. }
  660. .divTableRow {
  661. display: table-row;
  662. }
  663. .divTableRow.errmsg {
  664. background-color: white;
  665. font-weight: bolder;
  666. color: red;
  667. }
  668. .divTableHeading {
  669. display: table-header-group;
  670. }
  671. .divTableCell,
  672. .divTableHead {
  673. display: table-cell;
  674. }
  675. .divTableHeading {
  676. display: table-header-group;
  677. }
  678. .divTableFoot {
  679. display: table-footer-group;
  680. }
  681. .divTableBody {
  682. display: table-row-group;
  683. }
  684. /* customized part of div table */
  685. div.sheettableheader {
  686. margin-top: 0px;
  687. height: 36px;
  688. overflow-x: hidden;
  689. overflow-y: scroll;
  690. }
  691. div.btos,
  692. div.bstart,
  693. div.bfinish,
  694. div.brate,
  695. div.bstaff,
  696. div.bclient,
  697. div.bconfirmed,
  698. div.bsave,
  699. div.brating,
  700. div.bdelete {
  701. width: 10%;
  702. height: 30px;
  703. }
  704. div.btos {
  705. width: 20%;
  706. }
  707. div.bstart,
  708. div.bfinish {
  709. width: 11%;
  710. }
  711. div.brate {
  712. width: 10%;
  713. max-width: 20px;
  714. }
  715. .divTable div > select {
  716. width: 100%;
  717. height: 100%;
  718. }
  719. div.bdelete,
  720. div.bsave,
  721. div.bconfirmed {
  722. text-align: center;
  723. width: 5%;
  724. }
  725. div.brating {
  726. text-align: center;
  727. cursor: pointer;
  728. }
  729. .brating {
  730. unicode-bidi: bidi-override;
  731. direction: rtl;
  732. }
  733. div.workspace .brating > span:hover:before,
  734. div.workspace .brating > span:hover ~ span:before {
  735. content: "\2605";
  736. position: absolute;
  737. }
  738. div.bsave span.ticon-copy {
  739. display: none;
  740. }
  741. div.bsave span.ticon-save {
  742. display: inline-block;
  743. border: 3px solid lightgrey;
  744. padding: 5px;
  745. border-radius: 5px;
  746. color: black;
  747. cursor: pointer;
  748. }
  749. div.bsave.saved span.ticon-save {
  750. display: none;
  751. }
  752. div.bsave.saved span.ticon-copy {
  753. display: inline-block;
  754. border: 3px solid orange;
  755. padding: 5px;
  756. border-radius: 20px;
  757. color: orange;
  758. }
  759. div.bdelete span.ticon-trash {
  760. display: inline-block;
  761. border: 3px solid lightgrey;
  762. padding: 5px;
  763. border-radius: 5px;
  764. color: red;
  765. cursor: pointer;
  766. }
  767. div.workspace div > span:hover {
  768. box-shadow: 0px 0px 10px black;
  769. }
  770. div.divTableHeading div > span:hover {
  771. cursor: pointer;
  772. animation: blinker 0.3s linear infinite;
  773. }
  774. /* short code for the table */
  775. div.btos select,
  776. div.bstart input,
  777. div.bfinish input {
  778. width: 100%;
  779. height: 98%;
  780. }
  781. div.divTable.validjob {
  782. border: 0px solid white;
  783. }
  784. div.divTable.invalidjob {
  785. border-left: 2px solid red;
  786. border-right: 2px solid red;
  787. }
  788. div.divTable .invalid {
  789. background-color: yellow;
  790. }
  791. /* end of div table */
  792. /* pop up message box */
  793. .bts_message .ult_modal-body {
  794. height: 50vh;
  795. overflow: scroll;
  796. }
  797. .bts_message .ult_modal-body .sent {
  798. color: green;
  799. }
  800. .bts_message .ult_modal-body .nojob {
  801. color: dimgrey;
  802. }
  803. .bts_message .ult_modal-body .error {
  804. color: red;
  805. }
  806. .bts_message .ult_modal-body .span {
  807. font-weight: 900;
  808. }