default.scss 15 KB

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