default.scss 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635
  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. .item--list{
  153. display: flex;
  154. gap: 20px;
  155. .item{
  156. position: relative;
  157. cursor: pointer;
  158. width: calc((100% - 80px) / 5);
  159. border-radius: 20px;
  160. border: 1px solid #cccccc;
  161. padding: 1rem 1rem 2rem 1rem;
  162. .item--img{
  163. width: 100%;
  164. height: 10rem;
  165. background-repeat: no-repeat;
  166. background-size: 100%;
  167. background-position: center;
  168. background-color: #eee;
  169. border-radius: 20px;
  170. margin-bottom: 1.2rem;
  171. }
  172. >h3{
  173. color: #444444;
  174. font-size: 1rem;
  175. overflow: hidden;
  176. line-height: 1.2;
  177. text-overflow: ellipsis;
  178. display: -webkit-box;
  179. -webkit-line-clamp: 2;
  180. -webkit-box-orient: vertical;
  181. margin-bottom: 1rem;
  182. }
  183. >p{
  184. color: #888;
  185. line-height: 1.2;
  186. font-size: 0.8rem;
  187. margin-bottom: 0.8rem;
  188. }
  189. >span{
  190. color: #999;
  191. line-height: 1.2;
  192. font-size: 0.8rem;
  193. }
  194. .sold--out{
  195. position: absolute;
  196. top: 0;
  197. left: 0;
  198. width: 100%;
  199. height: 100%;
  200. background-color: rgba(0,0,0,0.2);
  201. border-radius: inherit;
  202. display: flex;
  203. align-items: center;
  204. justify-content: center;
  205. >span{
  206. color: #ffffff;
  207. text-align: center;
  208. font-size: 1.2rem;
  209. font-weight: 500;
  210. display: inline-block;
  211. padding: 0.8rem 3rem;
  212. background-color: red;
  213. border-radius: 50px;
  214. }
  215. }
  216. }
  217. }
  218. .item--pagination{
  219. display: flex;
  220. justify-content: center;
  221. margin-top: 80px;
  222. gap: 30px;
  223. .v-pagination{
  224. width: 50%;
  225. max-width: 800px;
  226. }
  227. .v-btn{
  228. padding: 0;
  229. width: 50px;
  230. height: 50px;
  231. border-radius: 100px;
  232. min-width: 50px;
  233. border: 1px solid #DDD;
  234. background: #FFF;
  235. .v-btn__content{
  236. color: #909090;
  237. font-size: 16px;
  238. font-weight: 400;
  239. line-height: 1;
  240. }
  241. &.prev--btn{
  242. background-image: url(/assets/img/ico_paging_prev.svg);
  243. background-repeat: no-repeat;
  244. background-position: center;
  245. }
  246. &.next--btn{
  247. background-image: url(/assets/img/ico_paging_next.svg);
  248. background-repeat: no-repeat;
  249. background-position: center;
  250. }
  251. }
  252. }
  253. }
  254. }
  255. }
  256. }
  257. /**********************************************
  258. | ag-grid
  259. **********************************************/
  260. .tbl-wrap {
  261. .ag-paging-panel {
  262. padding: 1.25rem 0px;
  263. }
  264. .ag-header-cell-resize {
  265. &:after {
  266. width: 1px;
  267. height: 1.25rem;
  268. top: calc(50% - (1.25rem)*0.5);
  269. }
  270. }
  271. .ag-checkbox-input-wrapper {
  272. &:after {
  273. content: '';
  274. width: 1rem;
  275. height: 1rem;
  276. background: url(../img/ico_chk_off.svg);
  277. background-repeat: no-repeat;
  278. }
  279. &.ag-checked {
  280. &:after {
  281. content: '';
  282. background: url(../img/ico_chk_on.svg);
  283. background-repeat: no-repeat;
  284. }
  285. }
  286. &.ag-indeterminate {
  287. &:after {
  288. content: '';
  289. background: url(../img/ico_check_indeterminate.svg);
  290. background-repeat: no-repeat;
  291. }
  292. }
  293. }
  294. .ag-root-wrapper {
  295. .ag-header-cell {
  296. padding: 0rem 1.25rem;
  297. }
  298. .ag-header-cell-text {
  299. text-align: left;
  300. }
  301. .ag-root-wrapper-body {
  302. &.ag-layout-normal {
  303. height: 100%;
  304. }
  305. }
  306. .ag-cell-label-container {
  307. height: 3.125rem;
  308. }
  309. .ag-header-cell-text {
  310. color: #444;
  311. font-size: 0.875rem;
  312. font-style: normal;
  313. font-weight: 700;
  314. }
  315. .ag-header {
  316. border-top: 0px;
  317. .ag-header-container {
  318. background: #F2F7FF;
  319. }
  320. &.ag-header-allow-overflow {
  321. .ag-header-row {
  322. background: #F2F7FF;
  323. }
  324. }
  325. }
  326. .ag-center-cols-container {
  327. .ag-row {
  328. &.disabled{
  329. opacity: .5;
  330. pointer-events: none;
  331. }
  332. .ag-cell {
  333. color: #444;
  334. font-size: 0.875rem;
  335. font-style: normal;
  336. font-weight: 400;
  337. text-align: left;
  338. justify-content: flex-start;
  339. padding: 0px 1.25rem;
  340. }
  341. }
  342. }
  343. }
  344. .ag-overlay-no-rows-center {
  345. display: flex;
  346. align-items: center;
  347. justify-content: center;
  348. gap: 0.62rem;
  349. color: #444;
  350. text-align: center;
  351. font-size: 0.875rem;
  352. font-weight: 700;
  353. &:before {
  354. content: '';
  355. display: inline-flex;
  356. width: 1.25rem;
  357. height: 1.25rem;
  358. background: url(../img/ico_no_data_nw.svg);
  359. background-size: contain;
  360. }
  361. }
  362. }
  363. .check--box--group{
  364. display: flex;
  365. }
  366. .form--group--inner{
  367. display: flex;
  368. align-items: center;
  369. gap:10px;
  370. .visible{
  371. display: none;
  372. }
  373. }
  374. .status--box{
  375. display: flex;
  376. align-items: center;
  377. justify-content: center;
  378. padding:5px 25px;
  379. border-radius: 35px;
  380. background: #e4e4e4;
  381. &.actv{
  382. background: #33559B;
  383. color:#fff;
  384. }
  385. }
  386. .img--content{
  387. display: flex;
  388. align-items: center;
  389. }
  390. .equip--image--wrap{
  391. display: flex;
  392. align-items: center;
  393. .equip--image{
  394. width:90px;
  395. height: 90px;
  396. margin-right: 25px;
  397. #preview_image{
  398. width: 90px;
  399. height: 90px;
  400. position: relative;
  401. border: 1px solid rgba(0, 0, 0, 0.2);
  402. overflow: hidden;
  403. img{
  404. width: 100%;
  405. position: absolute;
  406. top: 50%;
  407. object-fit: contain;
  408. left: 50%;
  409. transform: translate(-50%, -50%);
  410. }
  411. }
  412. .images-wrapper{
  413. width: 100%;
  414. height: 90px;
  415. .image{
  416. background-size: cover;
  417. width: 100%;
  418. height: 90px;
  419. background-repeat: none;
  420. cursor: pointer;
  421. }
  422. }
  423. .cool-lightbox {
  424. .cool-lightbox-toolbar{
  425. top: 30px;
  426. right: 30px;
  427. .cool-lightbox-toolbar__btn{
  428. border-radius: 50%;
  429. width: 56px;
  430. height: 56px;
  431. display: inline-block;
  432. background-image: url(../img/ic_close.svg);
  433. background-position: center;
  434. background-repeat: no-repeat;
  435. svg{
  436. display: none;
  437. }
  438. }
  439. }
  440. }
  441. }
  442. .equip--image--select{
  443. display:flex;
  444. flex-direction: column;
  445. .form--group{
  446. margin-bottom: 25px;
  447. margin-top: 10px;
  448. display: flex;
  449. .file--btn{
  450. width: 75px;
  451. height:33px;
  452. display: inline-flex;
  453. align-items: center;
  454. justify-content: center;
  455. border-radius: 0px!important;
  456. background: #6C7281!important;
  457. cursor: pointer;
  458. }
  459. }
  460. .equip--image--desc{
  461. color: #0131AD;
  462. font-size: 12px;
  463. font-style: normal;
  464. font-weight: 500;
  465. letter-spacing: -0.36px;
  466. }
  467. }
  468. }
  469. .form--group--inner{
  470. display: flex;
  471. align-items: center;
  472. justify-content: flex-start;
  473. gap:10px;
  474. margin-bottom:10px;
  475. .text--box{
  476. height:36px;
  477. border-radius: 0px;
  478. border:1px solid #b5b5b5;
  479. white-space: nowrap;
  480. display: flex;
  481. align-items: center;
  482. width:324px;
  483. justify-content: flex-start;
  484. padding:0 20px;
  485. text-overflow: ellipsis;
  486. }
  487. }
  488. .v-file-input{
  489. &.custom-input {
  490. .v-input__control {
  491. .v-field{
  492. border-radius: 0px;
  493. }
  494. .v-field__field {
  495. input{
  496. &:placeholder {
  497. font-size: 0.75rem!important;
  498. font-weight: 400;
  499. color: #8e8e8e!important;
  500. }
  501. }
  502. .v-field__input {
  503. padding:0px;
  504. min-height:36px;
  505. padding-left: 0.75rem;
  506. font-size: 0.75rem !important;
  507. font-weight: 400 !important;
  508. &::placeholder {
  509. font-size: 0.75rem!important;
  510. font-weight: 400;
  511. color: #8e8e8e!important;
  512. }
  513. }
  514. }
  515. }
  516. }
  517. margin-top: 0px;
  518. padding-top: 0px;
  519. .v-input__control{
  520. .v-input__slot{
  521. padding: 0 15px;
  522. &::before{
  523. display: none;
  524. }
  525. &::after{
  526. display: none;
  527. }
  528. .v-file-input__text,
  529. .v-file-input__text--placeholder,
  530. input::placeholder{
  531. color: #444!important;
  532. font-size: 12px!important;
  533. font-style: normal!important;
  534. font-weight: 300!important;
  535. letter-spacing: -0.36px!important;
  536. }
  537. .v-input__append-inner{
  538. .v-input__icon--clear{
  539. opacity: 1;
  540. .mdi-close::before{
  541. content: '';
  542. background-image: url(../static/ic_clear.svg);
  543. display: inline-block;
  544. width: 16px;
  545. height: 16px;
  546. background-position: center;
  547. }
  548. }
  549. }
  550. }
  551. }
  552. }
  553. .flex--type{
  554. display: flex;
  555. align-items: center;
  556. gap:12px;
  557. }
  558. .file--btn{
  559. border-radius: 0px!important;
  560. background: #4B5161!important;
  561. color: #FFF!important;
  562. font-size: 12px!important;
  563. font-weight: 500!important;
  564. }
  565. .radio--group{
  566. .v-selection-control-group{
  567. gap:10px;
  568. }
  569. }
  570. .mdi-radiobox-marked::before{
  571. content:''!important;
  572. width:15px;
  573. height:15px;
  574. display: inline-flex;
  575. background: url(../img/ic_radio_on.svg) no-repeat center;
  576. }
  577. .mdi-radiobox-blank::before{
  578. content:''!important;
  579. width:15px;
  580. height:15px;
  581. display: inline-flex;
  582. background: url(../img/ic_radio_off.svg) no-repeat center;
  583. }