default.scss 9.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485
  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. .form--cont--filter{
  59. width:100%;
  60. max-width:10.5rem;
  61. }
  62. .form--cont--text{
  63. width:100%;
  64. max-width:calc(100% - 10.5rem);
  65. }
  66. .sch--btn{
  67. // height:36px;
  68. height: 2.25rem;
  69. max-width:80px;
  70. }
  71. }
  72. .inner--headers{
  73. display: flex;
  74. align-items: center;
  75. justify-content: space-between;
  76. > h2{
  77. font-size:1.625rem;
  78. }
  79. .bread--crumbs--wrap{
  80. display: flex;
  81. align-items: center;
  82. gap:5px;
  83. span{
  84. font-size:.9rem;
  85. font-weight: 500;
  86. display: flex;
  87. align-items: center;
  88. gap:5px;
  89. &:before{
  90. content:"";
  91. display: inline-flex;
  92. width:15px;
  93. height:15px;
  94. background: url(../img/ic_arrow_right_chv.svg) no-repeat center;
  95. }
  96. &:nth-of-type(1){
  97. &:before{
  98. display: none;
  99. }
  100. }
  101. &:last-child{
  102. font-weight: bold;
  103. }
  104. }
  105. }
  106. }
  107. }
  108. }
  109. }
  110. /**********************************************
  111. | ag-grid
  112. **********************************************/
  113. .tbl-wrap {
  114. .ag-paging-panel {
  115. padding: 1.25rem 0px;
  116. }
  117. .ag-header-cell-resize {
  118. &:after {
  119. width: 1px;
  120. height: 1.25rem;
  121. top: calc(50% - (1.25rem)*0.5);
  122. }
  123. }
  124. .ag-checkbox-input-wrapper {
  125. &:after {
  126. content: '';
  127. width: 1rem;
  128. height: 1rem;
  129. background: url(../img/ico_chk_off.svg);
  130. background-repeat: no-repeat;
  131. }
  132. &.ag-checked {
  133. &:after {
  134. content: '';
  135. background: url(../img/ico_chk_on.svg);
  136. background-repeat: no-repeat;
  137. }
  138. }
  139. &.ag-indeterminate {
  140. &:after {
  141. content: '';
  142. background: url(../img/ico_check_indeterminate.svg);
  143. background-repeat: no-repeat;
  144. }
  145. }
  146. }
  147. .ag-root-wrapper {
  148. .ag-header-cell {
  149. padding: 0rem 1.25rem;
  150. }
  151. .ag-header-cell-text {
  152. text-align: left;
  153. }
  154. .ag-root-wrapper-body {
  155. &.ag-layout-normal {
  156. height: 100%;
  157. }
  158. }
  159. .ag-cell-label-container {
  160. height: 3.125rem;
  161. }
  162. .ag-header-cell-text {
  163. color: #444;
  164. font-size: 0.875rem;
  165. font-style: normal;
  166. font-weight: 700;
  167. }
  168. .ag-header {
  169. border-top: 0px;
  170. .ag-header-container {
  171. background: #F2F7FF;
  172. }
  173. &.ag-header-allow-overflow {
  174. .ag-header-row {
  175. background: #F2F7FF;
  176. }
  177. }
  178. }
  179. .ag-center-cols-container {
  180. .ag-row {
  181. &.disabled{
  182. opacity: .5;
  183. pointer-events: none;
  184. }
  185. .ag-cell {
  186. color: #444;
  187. font-size: 0.875rem;
  188. font-style: normal;
  189. font-weight: 400;
  190. text-align: left;
  191. justify-content: flex-start;
  192. padding: 0px 1.25rem;
  193. }
  194. }
  195. }
  196. }
  197. .ag-overlay-no-rows-center {
  198. display: flex;
  199. align-items: center;
  200. justify-content: center;
  201. gap: 0.62rem;
  202. color: #444;
  203. text-align: center;
  204. font-size: 0.875rem;
  205. font-weight: 700;
  206. &:before {
  207. content: '';
  208. display: inline-flex;
  209. width: 1.25rem;
  210. height: 1.25rem;
  211. background: url(../img/ico_no_data_nw.svg);
  212. background-size: contain;
  213. }
  214. }
  215. }
  216. .check--box--group{
  217. display: flex;
  218. }
  219. .form--group--inner{
  220. display: flex;
  221. align-items: center;
  222. gap:10px;
  223. .visible{
  224. display: none;
  225. }
  226. }
  227. .status--box{
  228. display: flex;
  229. align-items: center;
  230. justify-content: center;
  231. padding:5px 25px;
  232. border-radius: 35px;
  233. background: #e4e4e4;
  234. &.actv{
  235. background: #33559B;
  236. color:#fff;
  237. }
  238. }
  239. .img--content{
  240. display: flex;
  241. align-items: center;
  242. }
  243. .equip--image--wrap{
  244. display: flex;
  245. align-items: center;
  246. .equip--image{
  247. width:90px;
  248. height: 90px;
  249. margin-right: 25px;
  250. #preview_image{
  251. width: 90px;
  252. height: 90px;
  253. position: relative;
  254. border: 1px solid rgba(0, 0, 0, 0.2);
  255. overflow: hidden;
  256. img{
  257. width: 100%;
  258. position: absolute;
  259. top: 50%;
  260. object-fit: contain;
  261. left: 50%;
  262. transform: translate(-50%, -50%);
  263. }
  264. }
  265. .images-wrapper{
  266. width: 100%;
  267. height: 90px;
  268. .image{
  269. background-size: cover;
  270. width: 100%;
  271. height: 90px;
  272. background-repeat: none;
  273. cursor: pointer;
  274. }
  275. }
  276. .cool-lightbox {
  277. .cool-lightbox-toolbar{
  278. top: 30px;
  279. right: 30px;
  280. .cool-lightbox-toolbar__btn{
  281. border-radius: 50%;
  282. width: 56px;
  283. height: 56px;
  284. display: inline-block;
  285. background-image: url(../img/ic_close.svg);
  286. background-position: center;
  287. background-repeat: no-repeat;
  288. svg{
  289. display: none;
  290. }
  291. }
  292. }
  293. }
  294. }
  295. .equip--image--select{
  296. display:flex;
  297. flex-direction: column;
  298. .form--group{
  299. margin-bottom: 25px;
  300. margin-top: 10px;
  301. display: flex;
  302. .file--btn{
  303. width: 75px;
  304. height:33px;
  305. display: inline-flex;
  306. align-items: center;
  307. justify-content: center;
  308. border-radius: 0px!important;
  309. background: #6C7281!important;
  310. cursor: pointer;
  311. }
  312. }
  313. .equip--image--desc{
  314. color: #0131AD;
  315. font-size: 12px;
  316. font-style: normal;
  317. font-weight: 500;
  318. letter-spacing: -0.36px;
  319. }
  320. }
  321. }
  322. .form--group--inner{
  323. display: flex;
  324. align-items: center;
  325. justify-content: flex-start;
  326. gap:10px;
  327. margin-bottom:10px;
  328. .text--box{
  329. height:36px;
  330. border-radius: 0px;
  331. border:1px solid #b5b5b5;
  332. white-space: nowrap;
  333. display: flex;
  334. align-items: center;
  335. width:324px;
  336. justify-content: flex-start;
  337. padding:0 20px;
  338. text-overflow: ellipsis;
  339. }
  340. }
  341. .v-file-input{
  342. &.custom-input {
  343. .v-input__control {
  344. .v-field{
  345. border-radius: 0px;
  346. }
  347. .v-field__field {
  348. input{
  349. &:placeholder {
  350. font-size: 0.75rem!important;
  351. font-weight: 400;
  352. color: #8e8e8e!important;
  353. }
  354. }
  355. .v-field__input {
  356. padding:0px;
  357. min-height:36px;
  358. padding-left: 0.75rem;
  359. font-size: 0.75rem !important;
  360. font-weight: 400 !important;
  361. &::placeholder {
  362. font-size: 0.75rem!important;
  363. font-weight: 400;
  364. color: #8e8e8e!important;
  365. }
  366. }
  367. }
  368. }
  369. }
  370. margin-top: 0px;
  371. padding-top: 0px;
  372. .v-input__control{
  373. .v-input__slot{
  374. padding: 0 15px;
  375. &::before{
  376. display: none;
  377. }
  378. &::after{
  379. display: none;
  380. }
  381. .v-file-input__text,
  382. .v-file-input__text--placeholder,
  383. input::placeholder{
  384. color: #444!important;
  385. font-size: 12px!important;
  386. font-style: normal!important;
  387. font-weight: 300!important;
  388. letter-spacing: -0.36px!important;
  389. }
  390. .v-input__append-inner{
  391. .v-input__icon--clear{
  392. opacity: 1;
  393. .mdi-close::before{
  394. content: '';
  395. background-image: url(../static/ic_clear.svg);
  396. display: inline-block;
  397. width: 16px;
  398. height: 16px;
  399. background-position: center;
  400. }
  401. }
  402. }
  403. }
  404. }
  405. }
  406. .flex--type{
  407. display: flex;
  408. align-items: center;
  409. gap:12px;
  410. }
  411. .file--btn{
  412. border-radius: 0px!important;
  413. background: #4B5161!important;
  414. color: #FFF!important;
  415. font-size: 12px!important;
  416. font-weight: 500!important;
  417. }
  418. .radio--group{
  419. .v-selection-control-group{
  420. gap:10px;
  421. }
  422. }
  423. .mdi-radiobox-marked::before{
  424. content:''!important;
  425. width:15px;
  426. height:15px;
  427. display: inline-flex;
  428. background: url(../img/ic_radio_on.svg) no-repeat center;
  429. }
  430. .mdi-radiobox-blank::before{
  431. content:''!important;
  432. width:15px;
  433. height:15px;
  434. display: inline-flex;
  435. background: url(../img/ic_radio_off.svg) no-repeat center;
  436. }