default.scss 14 KB

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