default.scss 14 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657
  1. @charset "UTF-8";
  2. .max--w320{
  3. max-width:320px;
  4. }
  5. .container{
  6. height:100%;
  7. .content{
  8. height:100%;
  9. display: flex;
  10. aside{
  11. width:250px;
  12. border-right:1px solid #ccc;
  13. .aside--main--title{
  14. padding:20px;
  15. background: #33559B;
  16. color:#fff;
  17. font-size:20px;
  18. }
  19. .aside--list{
  20. display: flex;
  21. flex-direction: column;
  22. .v-btn{
  23. padding:15px 10px;
  24. font-size:16px;
  25. cursor: pointer;
  26. justify-content: flex-start;
  27. padding-left:20px;
  28. &.actv{
  29. background:#e4e4e4;
  30. }
  31. }
  32. }
  33. }
  34. .main{
  35. padding:1.625rem;
  36. width:calc(100%);
  37. .data--list--wrap{
  38. width:100%;
  39. padding-top:40px;
  40. .btn--actions--wrap{
  41. display: flex;
  42. align-items: center;
  43. justify-content: space-between;
  44. padding-bottom:25px;
  45. }
  46. }
  47. .search--modules{
  48. width:100%;
  49. display: flex;
  50. align-items: center;
  51. justify-content: center;
  52. gap:10px;
  53. border: 1px solid #eee;
  54. border-radius: 15px;
  55. padding:20px;
  56. margin-top:25px;
  57. background: #f8f8f8;
  58. &.type2{
  59. flex-direction: column;
  60. align-items: flex-start;
  61. position: relative;
  62. .search--inner{
  63. width: calc(100% - 120px);
  64. gap: 10px;
  65. display: flex;
  66. }
  67. .sch--btn{
  68. position: absolute;
  69. right: 20px;
  70. top: 20px;
  71. height: calc(100% - 40px);
  72. }
  73. }
  74. .month--selector{
  75. display: flex;
  76. align-items: center;
  77. overflow: hidden;
  78. border-radius: 10px;
  79. margin-left: 10px;
  80. background: #fff;
  81. border:1px solid #E2E2E2;
  82. .v-btn{
  83. color: #666;
  84. font-size: 0.8rem;
  85. height: 2.25rem;
  86. font-style: normal;
  87. font-weight: 500;
  88. line-height: 100%; /* 12px */
  89. letter-spacing: -0.48px;
  90. padding:0 1.2rem;
  91. border-radius: 0px;
  92. position: relative;
  93. &.actv{
  94. color:#fff;
  95. background-color:#007aff;
  96. &:after{
  97. display: none;
  98. }
  99. }
  100. }
  101. }
  102. .form--cont--filter{
  103. width:100%;
  104. max-width:10.5rem;
  105. }
  106. .form--cont--text{
  107. width:100%;
  108. max-width:calc(100% - 10.5rem);
  109. }
  110. .sch--btn{
  111. // height:36px;
  112. height: 2.25rem;
  113. max-width:80px;
  114. }
  115. }
  116. .inner--headers{
  117. display: flex;
  118. align-items: center;
  119. justify-content: space-between;
  120. > h2{
  121. font-size:1.625rem;
  122. }
  123. .bread--crumbs--wrap{
  124. display: flex;
  125. align-items: center;
  126. gap:5px;
  127. span{
  128. font-size:.9rem;
  129. font-weight: 500;
  130. display: flex;
  131. align-items: center;
  132. gap:5px;
  133. &:before{
  134. content:"";
  135. display: inline-flex;
  136. width:15px;
  137. height:15px;
  138. background: url(../img/ic_arrow_right_chv.svg) no-repeat center;
  139. }
  140. &:nth-of-type(1){
  141. &:before{
  142. display: none;
  143. }
  144. }
  145. &:last-child{
  146. font-weight: bold;
  147. }
  148. }
  149. }
  150. }
  151. .item--list--wrap{
  152. .no--data{
  153. padding-top: 80px;
  154. text-align: center;
  155. }
  156. .item--list{
  157. display: flex;
  158. gap: 20px;
  159. .item{
  160. position: relative;
  161. cursor: pointer;
  162. width: calc((100% - 80px) / 5);
  163. border-radius: 20px;
  164. border: 1px solid #cccccc;
  165. padding: 1rem 1rem 2rem 1rem;
  166. .item--img {
  167. width: 100%;
  168. height: 10rem;
  169. background-color: #eee;
  170. border-radius: 20px;
  171. margin-bottom: 1.2rem;
  172. overflow: hidden;
  173. position: relative;
  174. img {
  175. width: 100%;
  176. height: 100%;
  177. object-fit: cover;
  178. object-position: center;
  179. position: absolute;
  180. top: 0;
  181. left: 0;
  182. }
  183. }
  184. >h3{
  185. color: #444444;
  186. font-size: 1rem;
  187. overflow: hidden;
  188. line-height: 1.2;
  189. text-overflow: ellipsis;
  190. display: -webkit-box;
  191. -webkit-line-clamp: 2;
  192. -webkit-box-orient: vertical;
  193. margin-bottom: 1rem;
  194. }
  195. >p{
  196. color: #888;
  197. line-height: 1.2;
  198. font-size: 0.8rem;
  199. margin-bottom: 0.8rem;
  200. }
  201. >span{
  202. color: #999;
  203. line-height: 1.2;
  204. display: block;
  205. font-size: 0.8rem;
  206. }
  207. .sold--out{
  208. position: absolute;
  209. top: 0;
  210. left: 0;
  211. width: 100%;
  212. height: 100%;
  213. background-color: rgba(0,0,0,0.2);
  214. border-radius: inherit;
  215. display: flex;
  216. align-items: center;
  217. justify-content: center;
  218. &.blue--type{
  219. >span{
  220. background-color: #007aff;
  221. }
  222. }
  223. >span{
  224. color: #ffffff;
  225. text-align: center;
  226. font-size: 1.2rem;
  227. font-weight: 500;
  228. display: inline-block;
  229. padding: 0.8rem 3rem;
  230. background-color: red;
  231. border-radius: 50px;
  232. }
  233. }
  234. }
  235. }
  236. .item--pagination{
  237. display: flex;
  238. justify-content: center;
  239. margin-top: 80px;
  240. gap: 30px;
  241. .v-pagination{
  242. width: 50%;
  243. max-width: 800px;
  244. }
  245. .v-btn{
  246. padding: 0;
  247. width: 50px;
  248. height: 50px;
  249. border-radius: 100px;
  250. min-width: 50px;
  251. border: 1px solid #DDD;
  252. background: #FFF;
  253. &.v-btn--disabled{
  254. opacity: 0.5;
  255. }
  256. .v-btn__content{
  257. color: #909090;
  258. font-size: 16px;
  259. font-weight: 400;
  260. line-height: 1;
  261. }
  262. &.prev--btn{
  263. background-image: url(/assets/img/ico_paging_prev.svg);
  264. background-repeat: no-repeat;
  265. background-position: center;
  266. }
  267. &.next--btn{
  268. background-image: url(/assets/img/ico_paging_next.svg);
  269. background-repeat: no-repeat;
  270. background-position: center;
  271. }
  272. }
  273. }
  274. }
  275. }
  276. }
  277. }
  278. /**********************************************
  279. | ag-grid
  280. **********************************************/
  281. .tbl-wrap {
  282. .ag-paging-panel {
  283. padding: 1.25rem 0px;
  284. }
  285. .ag-header-cell-resize {
  286. &:after {
  287. width: 1px;
  288. height: 1.25rem;
  289. top: calc(50% - (1.25rem)*0.5);
  290. }
  291. }
  292. .ag-checkbox-input-wrapper {
  293. &:after {
  294. content: '';
  295. width: 1rem;
  296. height: 1rem;
  297. background: url(../img/ico_chk_off.svg);
  298. background-repeat: no-repeat;
  299. }
  300. &.ag-checked {
  301. &:after {
  302. content: '';
  303. background: url(../img/ico_chk_on.svg);
  304. background-repeat: no-repeat;
  305. }
  306. }
  307. &.ag-indeterminate {
  308. &:after {
  309. content: '';
  310. background: url(../img/ico_check_indeterminate.svg);
  311. background-repeat: no-repeat;
  312. }
  313. }
  314. }
  315. .ag-root-wrapper {
  316. .ag-header-cell {
  317. padding: 0rem 1.25rem;
  318. }
  319. .ag-header-cell-text {
  320. text-align: left;
  321. }
  322. .ag-root-wrapper-body {
  323. &.ag-layout-normal {
  324. height: 100%;
  325. }
  326. }
  327. .ag-cell-label-container {
  328. height: 3.125rem;
  329. }
  330. .ag-header-cell-text {
  331. color: #444;
  332. font-size: 0.875rem;
  333. font-style: normal;
  334. font-weight: 700;
  335. }
  336. .ag-header {
  337. border-top: 0px;
  338. .ag-header-container {
  339. background: #F2F7FF;
  340. }
  341. &.ag-header-allow-overflow {
  342. .ag-header-row {
  343. background: #F2F7FF;
  344. }
  345. }
  346. }
  347. .ag-center-cols-container {
  348. .ag-row {
  349. &.disabled{
  350. opacity: .5;
  351. pointer-events: none;
  352. }
  353. .ag-cell {
  354. color: #444;
  355. font-size: 0.875rem;
  356. font-style: normal;
  357. font-weight: 400;
  358. text-align: left;
  359. justify-content: flex-start;
  360. padding: 0px 1.25rem;
  361. }
  362. }
  363. }
  364. }
  365. .ag-overlay-no-rows-center {
  366. display: flex;
  367. align-items: center;
  368. justify-content: center;
  369. gap: 0.62rem;
  370. color: #444;
  371. text-align: center;
  372. font-size: 0.875rem;
  373. font-weight: 700;
  374. &:before {
  375. content: '';
  376. display: inline-flex;
  377. width: 1.25rem;
  378. height: 1.25rem;
  379. background: url(../img/ico_no_data_nw.svg);
  380. background-size: contain;
  381. }
  382. }
  383. }
  384. .check--box--group{
  385. display: flex;
  386. }
  387. .form--group--inner{
  388. display: flex;
  389. align-items: center;
  390. gap:10px;
  391. .visible{
  392. display: none;
  393. }
  394. }
  395. .status--box{
  396. display: flex;
  397. align-items: center;
  398. justify-content: center;
  399. padding:5px 25px;
  400. border-radius: 35px;
  401. background: #e4e4e4;
  402. &.actv{
  403. background: #33559B;
  404. color:#fff;
  405. }
  406. }
  407. .img--content{
  408. display: flex;
  409. align-items: center;
  410. }
  411. .equip--image--wrap{
  412. display: flex;
  413. align-items: center;
  414. .equip--image{
  415. width:90px;
  416. height: 90px;
  417. margin-right: 25px;
  418. #preview_image{
  419. width: 90px;
  420. height: 90px;
  421. position: relative;
  422. border: 1px solid rgba(0, 0, 0, 0.2);
  423. overflow: hidden;
  424. img{
  425. width: 100%;
  426. position: absolute;
  427. top: 50%;
  428. object-fit: contain;
  429. left: 50%;
  430. transform: translate(-50%, -50%);
  431. }
  432. }
  433. .images-wrapper{
  434. width: 100%;
  435. height: 90px;
  436. .image{
  437. background-size: cover;
  438. width: 100%;
  439. height: 90px;
  440. background-repeat: none;
  441. cursor: pointer;
  442. }
  443. }
  444. .cool-lightbox {
  445. .cool-lightbox-toolbar{
  446. top: 30px;
  447. right: 30px;
  448. .cool-lightbox-toolbar__btn{
  449. border-radius: 50%;
  450. width: 56px;
  451. height: 56px;
  452. display: inline-block;
  453. background-image: url(../img/ic_close.svg);
  454. background-position: center;
  455. background-repeat: no-repeat;
  456. svg{
  457. display: none;
  458. }
  459. }
  460. }
  461. }
  462. }
  463. .equip--image--select{
  464. display:flex;
  465. flex-direction: column;
  466. .form--group{
  467. margin-bottom: 25px;
  468. margin-top: 10px;
  469. display: flex;
  470. .file--btn{
  471. width: 75px;
  472. height:33px;
  473. display: inline-flex;
  474. align-items: center;
  475. justify-content: center;
  476. border-radius: 0px!important;
  477. background: #6C7281!important;
  478. cursor: pointer;
  479. }
  480. }
  481. .equip--image--desc{
  482. color: #0131AD;
  483. font-size: 12px;
  484. font-style: normal;
  485. font-weight: 500;
  486. letter-spacing: -0.36px;
  487. }
  488. }
  489. }
  490. .form--group--inner{
  491. display: flex;
  492. align-items: center;
  493. justify-content: flex-start;
  494. gap:10px;
  495. margin-bottom:10px;
  496. .text--box{
  497. height:36px;
  498. border-radius: 0px;
  499. border:1px solid #b5b5b5;
  500. white-space: nowrap;
  501. display: flex;
  502. align-items: center;
  503. width:324px;
  504. justify-content: flex-start;
  505. padding:0 20px;
  506. text-overflow: ellipsis;
  507. }
  508. }
  509. .v-file-input{
  510. &.custom-input {
  511. .v-input__control {
  512. .v-field{
  513. border-radius: 0px;
  514. }
  515. .v-field__field {
  516. input{
  517. &:placeholder {
  518. font-size: 0.75rem!important;
  519. font-weight: 400;
  520. color: #8e8e8e!important;
  521. }
  522. }
  523. .v-field__input {
  524. padding:0px;
  525. min-height:36px;
  526. padding-left: 0.75rem;
  527. font-size: 0.75rem !important;
  528. font-weight: 400 !important;
  529. &::placeholder {
  530. font-size: 0.75rem!important;
  531. font-weight: 400;
  532. color: #8e8e8e!important;
  533. }
  534. }
  535. }
  536. }
  537. }
  538. margin-top: 0px;
  539. padding-top: 0px;
  540. .v-input__control{
  541. .v-input__slot{
  542. padding: 0 15px;
  543. &::before{
  544. display: none;
  545. }
  546. &::after{
  547. display: none;
  548. }
  549. .v-file-input__text,
  550. .v-file-input__text--placeholder,
  551. input::placeholder{
  552. color: #444!important;
  553. font-size: 12px!important;
  554. font-style: normal!important;
  555. font-weight: 300!important;
  556. letter-spacing: -0.36px!important;
  557. }
  558. .v-input__append-inner{
  559. .v-input__icon--clear{
  560. opacity: 1;
  561. .mdi-close::before{
  562. content: '';
  563. background-image: url(../static/ic_clear.svg);
  564. display: inline-block;
  565. width: 16px;
  566. height: 16px;
  567. background-position: center;
  568. }
  569. }
  570. }
  571. }
  572. }
  573. }
  574. .flex--type{
  575. display: flex;
  576. align-items: center;
  577. gap:12px;
  578. }
  579. .file--btn{
  580. border-radius: 0px!important;
  581. background: #4B5161!important;
  582. color: #FFF!important;
  583. font-size: 12px!important;
  584. font-weight: 500!important;
  585. }
  586. .radio--group{
  587. .v-selection-control-group{
  588. gap:10px;
  589. }
  590. }
  591. .mdi-radiobox-marked::before{
  592. content:''!important;
  593. width:15px;
  594. height:15px;
  595. display: inline-flex;
  596. background: url(../img/ic_radio_on.svg) no-repeat center;
  597. }
  598. .mdi-radiobox-blank::before{
  599. content:''!important;
  600. width:15px;
  601. height:15px;
  602. display: inline-flex;
  603. background: url(../img/ic_radio_off.svg) no-repeat center;
  604. }