1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276 |
- /*$main-color: #007bff;*/
- /*$main-color: #11998e;*/
- $main-color: #03aebc;
- @mixin dropdownItem {
- border-color: $main-color;
- .dropdown-item {
- color: $main-color;
- border-bottom: 1px solid #eee;
- &:first-child {
- border-top: 1px solid #eee;
- }
- &:active, &.active {
- color: #fff !important;
- background-color: $main-color;
- }
- &:focus, &:hover {
- color: #fff;
- text-decoration: none;
- background-color: $main-color;
- }
- }
- }
- body {
- .sidebar {
- overflow-x: hidden !important;
- }
- .no-select {
- -webkit-user-select: none;
- -moz-user-select: none;
- -ms-user-select: none;
- user-select: none;
- }
- .content-wrapper {
- padding: 5px 10px;
- .dropdown-menu {
- @include dropdownItem;
- }
- }
- label {
- &.iwb-label {
- text-align: right;
- margin-bottom: 0;
- }
- &.iwb-label-sm {
- padding-top: .2rem;
- }
- &.iwb-label-required::before {
- content: "*";
- color: red;
- margin-right: 6px;
- text-align: right;
- }
- }
- .text-iwb {
- color: $main-color;
- }
- .text-p, &.text-primary {
- color: $main-color;
- }
- .text-s, &.text-success {
- color: #28a745;
- }
- .text-i, &.text-info {
- color: #00b0e4;
- }
- .text-w, &.text-warning {
- color: #ffc107;
- }
- .text-d, &.text-danger {
- color: #fb483a;
- }
- }
- .nav-tabs {
- border-bottom: 1px solid $main-color;
- .nav-item {
- &.show {
- .nav-link {
- color: #fff;
- background-color: $main-color;
- border-color: $main-color;
- }
- }
- }
- .nav-link {
- color: $main-color;
- &:focus, &:hover {
- border-color: $main-color $main-color $main-color;
- color: $main-color;
- font-weight: 600;
- }
- &.active {
- color: #fff;
- background-color: $main-color;
- border-color: $main-color;
- }
- }
- }
- .number {
- }
- .label {
- display: inline-block;
- padding: .25rem .4rem;
- font-size: 75%;
- font-weight: 700;
- line-height: 1;
- text-align: center;
- white-space: nowrap;
- vertical-align: baseline;
- border-radius: .25rem;
- transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;
- color: #fff;
- background-color: #6c757d;
- border-color: #6c757d;
- &.label-iwb {
- background-color: $main-color;
- border-color: $main-color;
- }
- &.label-p, &.label-primary {
- background-color: $main-color;
- border-color: $main-color;
- }
- &.label-s, &.label-success {
- background-color: #28a745;
- border-color: #28a745;
- }
- &.label-i, &.label-info {
- background-color: #00b0e4;
- border-color: #00b0e4;
- }
- &.label-w, &.label-warning {
- color: #1f2d3d;
- background-color: #ffc107;
- border-color: #ffc107;
- }
- &.label-d, &.label-danger {
- background-color: #fb483a;
- border-color: #fb483a;
- }
- }
- .badge.badge-iwb {
- color: #fff;
- background-color: $main-color;
- border-color: $main-color;
- }
- .btn.btn-iwb {
- color: #fff;
- background-color: $main-color;
- border-color: $main-color;
- box-shadow: none;
- }
- .btn.btn-iwb:hover {
- background-image: linear-gradient(rgba(0,0,0,.1),rgba(0,0,0,.1));
- border-color: rgba(0,0,0,.1);
- }
- .btn.btn-default {
- color: $main-color;
- border-color: $main-color;
- }
- .btn-outline-iwb {
- color: $main-color;
- border-color: $main-color;
- }
- .btn-outline-iwb:hover {
- color: #fff;
- background-color: $main-color;
- border-color: $main-color;
- }
- .btn.btn-gold {
- border-radius: 25px;
- color: #eee;
- background-color: #ffa600;
- background-color: hsl(39, 100%, 50%);
- border: none;
- box-shadow: inset #fffeff 0 0.3em .3em, inset #000000 0 -0.1em .3em, #cc8500 0 .1em 3px, #996300 0 .3em 1px, #000000 0 .5em 5px !important;
- box-shadow: inset rgba(255,254,255,0.6) 0 0.3em .3em, inset rgba(0,0,0,0.15) 0 -0.1em .3em, hsl(39, 100%, 40%) 0 .1em 3px, hsl(39, 100%, 30%) 0 .3em 1px, rgba(0,0,0,0.2) 0 .5em 5px !important;
- &:hover, &:focus, &:active {
- color: #fff;
- background-color: #ffa666;
- font-weight: 600;
- }
- }
- .btn.btn-dl {
- color: #fff;
- background-color: #34b29d;
- font-weight: 600;
- box-shadow: inset rgba(255, 254, 255, 0.6) 0 0.3em 0.3em, inset rgba(0, 0, 0, 0.15) 0 -0.1em 0.3em, #007f61 0 0.1em 3px, #005f61 0 0.3em 1px, rgba(0, 0, 0, 0.2) 0 0.5em 5px !important;
- &:hover, &:focus, &:active {
- color: #fff;
- background-color: #049e9a;
- font-weight: 600;
- }
- }
- .bg-iwb {
- color: #fff;
- background-color: $main-color !important;
- > a {
- color: inherit !important;
- }
- }
- .btn-add {
- color: #fff;
- background-color: #28a745;
- border-color: #28a745;
- box-shadow: none;
- &:hover {
- color: #fff;
- background-color: #218838;
- border-color: #1e7e34;
- }
- }
- .btn-delete {
- color: #fff;
- background-color: #dc3545;
- border-color: #dc3545;
- box-shadow: none;
- &:hover {
- color: #fff;
- background-color: #c82333;
- border-color: #bd2130;
- }
- }
- .card {
- &.card-iwb {
- &.card-outline {
- border-top: 3px solid $main-color;
- }
- &:not(.card-outline) > .card-header {
- background-color: $main-color;
- color: #fff !important;
- a.nav-link {
- color: inherit !important;
- &.active {
- color: $main-color !important;
- background: #fff;
- border-color: #fff;
- }
- &:hover {
- border-color: #fff;
- }
- }
- }
- }
- &.card-sm {
- .card-header {
- padding: 5px 10px;
- .card-title {
- font-size: .875rem;
- }
- .card-tools {
- margin-right: 0;
- button {
- padding: 1px 5px;
- margin-top: -15px;
- }
- }
- }
- .card-body {
- padding: 10px 15px;
- }
- }
- &.card-gold.card-outline-tabs > .card-header a.active {
- color: hsl(39, 100%, 50%);
- border-top: 3px solid hsl(39, 100%, 50%);
- }
- &.card-dl.card-outline-tabs > .card-header {
- .nav-tabs {
- border-bottom: 1px solid #049e9a;
- a.nav-link.active {
- color: #fff;
- border-top: 3px solid #049e9a;
- border-color: #049e9a #049e9a #049e9a;
- }
- a.nav-link:focus, a.nav-link:hover, a.nav-link:active {
- border-color: #049e9a #049e9a #049e9a;
- }
- }
- }
- &.card-primary.card-outline-tabs > .card-header a.active {
- border-top: 3px solid #11998e !important;
- }
- }
- .iwb-checkbox {
- display: inline-block;
- position: relative;
- padding-left: 30px;
- color: $main-color;
- margin-bottom: 10px;
- cursor: pointer;
- font-size: .875rem;
- -webkit-transition: all 0.3s;
- transition: all 0.3s;
- cursor: pointer;
- > input {
- position: absolute;
- z-index: -1;
- opacity: 0;
- filter: alpha(opacity=0);
- }
- > span {
- border-radius: 3px;
- background: none;
- position: absolute;
- top: 2px;
- left: 0;
- height: 18px;
- width: 18px;
- color: inherit;
- border: 1px solid;
- }
- > span:after {
- content: '';
- position: absolute;
- display: none;
- }
- input:checked ~ span {
- -webkit-transition: all 0.3s;
- transition: all 0.3s;
- background: none;
- }
- input:checked ~ span:after {
- display: block;
- top: 50%;
- left: 50%;
- margin-left: -2px;
- margin-top: -6px;
- width: 5px;
- height: 10px;
- border-color: inherit;
- border-style: solid;
- border-width: 0 2px 2px 0 !important;
- -webkit-transform: rotate(45deg);
- transform: rotate(45deg);
- }
- &.iwb-green {
- color: #28a745;
- }
- &.iwb-danger {
- color: #fb483a;
- }
- &.iwb-gold {
- color: hsl(39, 100%, 50%);
- }
- &.iwb-dl {
- color: #049e9a;
- }
- }
- .tooltip {
- .tooltip-inner {
- background: $main-color;
- }
- &.bs-tooltip-left {
- .arrow:before {
- border-left-color: $main-color;
- }
- }
- &.bs-tooltip-right {
- .arrow:before {
- border-right-color: $main-color;
- }
- }
- &.bs-tooltip-top {
- .arrow:before {
- border-top-color: $main-color;
- }
- }
- &.bs-tooltip-bottom {
- .arrow:before {
- border-bottom-color: $main-color;
- }
- }
- }
- .daterangepicker {
- z-index: 1050;
- }
- .iwb-file {
- width: 100%;
- position: relative;
- display: inline-block;
- width: 100%;
- margin-bottom: 0;
- .iwb-file-input {
- opacity: 0;
- }
- .iwb-file-label {
- background-color: #fff;
- border: 1px solid #aaa;
- color: #ccc;
- text-align: left;
- position: absolute;
- top: 0;
- right: 0;
- left: 0;
- z-index: 1;
- width: 100%;
- height: calc( 1.725rem + 2px);
- padding: 5px 12px;
- line-height: 1.25;
- font-weight: 400;
- border-radius: 3px;
- &.choice {
- color: #e9ecef;
- }
- &:after {
- color: #495057;
- border-left: 1px solid #aaa;
- background-color: #e9ecef;
- position: absolute;
- top: 0;
- right: 0;
- bottom: 0;
- z-index: 3;
- display: block;
- height: 1.725rem;
- padding: 5px 12px;
- line-height: 1.25;
- font-family: "iconfont";
- content: "\e81c 浏览文件";
- border-radius: 0 3px 3px 0;
- }
- }
- .iwb-file-input:lang(en) ~ .iwb-file-label::after {
- content: "Browse";
- }
- .clear {
- display: block;
- color: #695057;
- background: #e9ecef;
- border: 1px solid #aaa;
- width: 33px;
- height: calc( 1.725rem + 2px);
- padding: 5px 10px;
- cursor: pointer;
- position: absolute;
- top: 0;
- right: 100px;
- z-index: 1;
- }
- &.file-error {
- .iwb-file-label {
- border: 1px solid #F44336 !important;
- }
- }
- &.file-success {
- .iwb-file-label {
- border: 1px solid #28a745 !important;
- }
- }
- }
- .dropdown-menu {
- .dropdown-item {
- &:active, &.active {
- color: #fff !important;
- background-color: $main-color;
- }
- }
- }
- .modal-backdrop.show {
- opacity: .1;
- }
- .modal {
- .modal-header {
- color: $main-color;
- padding-top: 10px;
- padding-bottom: 10px;
- .modal-title-span {
- color: inherit;
- }
- .close {
- color: inherit;
- outline: none !important;
- }
- }
- .modal-body {
- padding-top: 15px;
- padding-bottom: 10px;
- }
- .dropdown-menu {
- @include dropdownItem;
- }
- }
- form {
- .form-group {
- margin-bottom: 10px;
- &.row {
- margin-left: 0;
- margin-right: 0;
- .iwb-label {
- width: 15%;
- max-width: 100px;
- padding-right: 10px;
- }
- & > div {
- width: 85%;
- position: relative;
- }
- }
- }
- .form-control {
- border-color: #aaa;
- transition: all .3s ease-in-out;
- z-index: 1;
- }
- .form-control:focus, .form-control:active {
- border-color: $main-color;
- }
- .form-control:disabled, .form-control[readonly] {
- background-color: #e9ecef;
- opacity: .8;
- }
- .form-control.error {
- border-color: #dc3545;
- }
- .form-control.valid {
- border-color: #28a745;
- }
- label.error {
- position: absolute;
- top: 4px;
- right: 20px;
- width: auto;
- color: #ff0000;
- z-index: 4;
- }
- .search-input + label.error {
- right: 45px;
- }
- .input-group > .search-icon > .input-group-text {
- color: #fff;
- background-color: $main-color;
- border: 1px solid $main-color;
- font-weight: 400;
- width: 35px;
- }
- }
- .input-group-sm {
- .select2-container {
- .selection {
- & > .select2-selection--single {
- padding: 0;
- height: calc(1.8125rem + 2px);
- .select2-selection__rendered {
- height: 100%;
- line-height: 1.8125rem;
- margin-top: 0;
- }
- .select2-selection__arrow {
- height: 100%;
- }
- }
- & > .select2-selection--multiple {
- height: calc(1.8125rem + 2px);
- .select2-selection__choice {
- margin-top: .325rem;
- background-color: $main-color;
- border-color: $main-color;
- font-size: 85%;
- }
- .select2-selection__choice__remove {
- color: #eee;
- &:hover {
- color: #fff;
- }
- }
- }
- }
- &.select2-container--focus, &.select2-container--open {
- .select2-selection {
- border-color: $main-color;
- }
- }
- &.select2-container--open {
- .select2-search--inline .select2-search__field {
- border: 1px solid $main-color;
- margin-top: 4px;
- }
- }
- .select2-dropdown {
- border-color: $main-color;
- }
- }
- .form-control.error + .select2-container .select2-selection {
- border-color: #dc3545;
- }
- .form-control.valid + .select2-container .select2-selection {
- border-color: #28a745;
- }
- }
- .iwb-bootstrap-table {
- .tableTool {
- padding: 5px 0;
- margin: 0;
- height: 41px;
- .btn-group button.btn.btn-default {
- border-color: #ddd;
- }
- .search-icon {
- i, span {
- font-size: 1rem;
- font-weight: 600;
- }
- }
- }
- .iwb-checkbox {
- > span {
- top: -3px;
- left: 1px;
- height: 17px;
- width: 17px;
- }
- input:checked ~ span {
- background: #fff;
- }
- }
- .table-action {
- cursor: pointer;
- color: $main-color;
- margin: 0 8px;
- padding: 0 2px;
- font-size: 14px;
- font-weight: 600;
- &:hover {
- border-bottom: 2px solid $main-color;
- padding-bottom: 2px;
- }
- i {
- margin-right: 5px;
- font-size: 1rem;
- }
- }
- .selected {
- .table-action {
- color: #fff;
- &:hover {
- border-bottom: 2px solid #fff;
- }
- }
- }
- .bootstrap-table .table:not(.table-condensed) > thead > tr > td,
- .bootstrap-table .table:not(.table-condensed) > tbody > tr > td,
- .bootstrap-table .table:not(.table-condensed) > tfoot > tr > td {
- padding: 0 8px;
- height: 28px;
- }
- .fixed-table-container {
- border-radius: 4px 4px 0 0;
- .fixed-table-header {
- thead {
- /*background-color: #D1DCF9;*/
- background-color: $main-color;
- background-image: linear-gradient(rgba(255,255,255,.5),rgba(255,255,255,.5));
- .th-inner.sortable {
- padding-right: 8px;
- }
- tr > th {
- border-bottom: none;
- border-top: none;
- }
- }
- }
- .fixed-table-body {
- background-color: rgba(0,0,0,.00);
- thead {
- background-color: $main-color;
- background-image: linear-gradient(rgba(255,255,255,.5),rgba(255,255,255,.5));
- /*background-color: #EBEEF7;*/
- }
- tbody {
- .selected td {
- background-color: darken($main-color,2%);
- /*background-color: #0074f0;*/
- color: #eee;
- }
- }
- .table-striped tbody tr:nth-of-type(2n) {
- /*background-color: rgba(0,0,0,.00);*/
- background-color: rgba(235, 238, 247,.5);
- }
- .table-striped tbody tr:nth-of-type(2n+1) {
- /*background-color: rgba(0,0,0,.01);*/
- background-color: #f9f9f9;
- }
- .table-hover > tbody > tr:hover {
- /*background-color: #D1DCF9;*/
- background-color: $main-color;
- background-image: linear-gradient(rgba(255,255,255,.5),rgba(255,255,255,.5));
- }
- }
- }
- .fixed-table-pagination {
- /*background-color: #D1DCF9;*/
- background-color: $main-color;
- background-image: linear-gradient(rgba(255,255,255,.5),rgba(255,255,255,.5));
- padding: 5px;
- border: 1px solid #ddd;
- border-top: none;
- border-radius: 0 0 4px 4px;
- .pagination-detail, .pagination {
- margin: 0;
- .page-list > .btn-group > .btn {
- padding: 0.175rem 0.5rem;
- }
- }
- }
- }
- .search-card {
- & > .card-header {
- position: relative;
- cursor: pointer;
- padding: 5px 15px;
- .card-title {
- font-size: 0.875rem;
- line-height: 21px;
- color: $main-color;
- }
- .card-tool {
- position: absolute;
- right: 3px;
- i, span {
- color: $main-color;
- }
- }
- }
- & > .card-body {
- padding: 10px 10px 0;
- }
- & > .card-footer {
- padding: 5px 10px;
- /*i, span, > span.btn.menu-btn {
- color: #fff;
- }*/
- }
- .search-unit {
- width: 100%;
- margin-bottom: 10px;
- .input-group-text {
- min-width: 20px;
- text-align: right;
- color: #fff;
- background-color: $main-color;
- border: 1px solid $main-color;
- font-weight: bold;
- }
- .select2 {
- width: calc(100% - 80px) !important;
- }
- .input-group-prepend {
- .input-group-text {
- width: 80px;
- justify-content: right;
- }
- }
- }
- }
- .swal-modal {
- width: 350px;
- text-align: left;
- padding: 10px 10px 15px;
- /*.swal-icon {
- width: 30px;
- height: 30px;
- border-width: 2px;
- margin: 20px;
- margin-left: 30px;
- .swal-icon--warning__body {
- width: 2px;
- height: 17px;
- top: 5px;
- border-radius: 2px;
- margin-left: -1px;
- .swal-icon--warning__dot {
- width: 3px;
- height: 3px;
- border-radius: 50%;
- margin-left: -1.5px;
- bottom: -5px;
- }
- }
- }*/
- .swal-icon {
- display: none;
- }
- .swal-title, .swal-text {
- font-size: 14px;
- text-align: left;
- margin: 0;
- padding: 10px 0 0;
- text-indent: 1em;
- color: #36536D;
- }
- .swal-title {
- font-size: 16px;
- font-weight: 600;
- color: #094B88;
- line-height: 35px;
- &:before {
- font-family: 'iconfont';
- margin-right: 10px;
- font-size: 30px;
- position: relative;
- top: 4px;
- }
- }
- .swal-icon--success + .swal-title {
- &:before {
- content: '\e7e2';
- color: #a5dc86;
- }
- }
- .swal-icon--error + .swal-title {
- &:before {
- content: '\e7e1';
- color: #f27474;
- }
- }
- .swal-icon--warning + .swal-title {
- &:before {
- content: '\e7de';
- color: #f8bb86;
- }
- }
- .swal-icon--info + .swal-title {
- &:before {
- content: '\e7dc';
- color: #c9dae1;
- }
- }
- .swal-footer {
- text-align: right;
- margin-top: 10px;
- padding: 5px 10px;
- .swal-button-container {
- margin: 0;
- .swal-button {
- border: 1px solid #03AEBC;
- background: #03AEBC;
- color: #fff;
- border-radius: 3px;
- box-shadow: none;
- font-weight: 400;
- font-size: 14px;
- padding: 4px 20px;
- margin-left: 15px;
- cursor: pointer;
- &.swal-button--cancel {
- background: #F5F5F5;
- color: #36536D;
- border: 1px solid #F3F3F3;
- }
- }
- }
- }
- }
- .iwb-info-box {
- .box-header {
- text-indent: 2em;
- color: $main-color;
- margin-top: 15px;
- margin-bottom: 15px;
- font-size: 1.5rem;
- font-weight: 600;
- border-bottom: 2px solid;
- letter-spacing: 2px;
- padding-bottom: 10px;
- }
- .box-footer {
- color: $main-color;
- text-align: center;
- background: transparent;
- margin-top: 15px;
- padding-top: 10px;
- border-top: 2px solid;
- }
- &.iwb-sm {
- .box-header {
- margin-top: 10px;
- margin-bottom: 10px;
- padding-bottom: 5px;
- font-size: 1rem;
- }
- }
- }
- .notification-menu {
- width: 500px;
- max-width: 500px;
- .notification-item {
- display: flex;
- .item-icon {
- width: 20px;
- text-align: center;
- }
- .item-title {
- width: calc(100% - 70px);
- overflow: hidden;
- text-overflow: ellipsis;
- padding: 0 5px;
- }
- .item-time {
- width: auto;
- padding: 0 5px;
- }
- .item-state {
- width: 40px;
- padding: 0 15px 0 0;
- .no-read {
- color: $main-color;
- cursor: pointer;
- position: relative;
- &::after {
- content: "";
- position: absolute;
- top: 2px;
- right: -8px;
- background: #fb483a;
- width: 5px;
- height: 5px;
- border-radius: 50%;
- }
- }
- .has-read {
- color: #aaa;
- cursor: not-allowed
- }
- }
- &:active, &.active {
- .no-read {
- color: #fff;
- }
- }
- }
- }
- #avatar-modal {
- .avatar-view {
- height: auto;
- img {
- width: 100%;
- cursor: pointer;
- }
- }
- .avatar-body {
- padding-right: 15px;
- padding-left: 15px;
- }
- .avatar-form {
- font-size: inherit;
- }
- .avatar-upload {
- overflow: hidden;
- label {
- display: block;
- float: left;
- clear: left;
- width: 100px;
- }
- input {
- display: block;
- margin-left: 110px;
- }
- }
- .avater-alert {
- margin-top: 10px;
- margin-bottom: 10px;
- }
- .avatar-wrapper {
- height: 364px;
- width: 100%;
- margin-top: 15px;
- box-shadow: inset 0 0 5px #000000;
- box-shadow: inset 0 0 5px rgba(0,0,0,.25);
- background-color: #f6f6f6;
- background-color: #f6f6f6;
- border: 1px solid $main-color;
- overflow: hidden;
- img {
- display: block;
- height: auto;
- max-width: 100%;
- }
- }
- .avatar-preview {
- float: left;
- margin-top: 15px;
- margin-right: 15px;
- border: 1px solid #ddd;
- border-radius: 50%;
- background-color: #f5f5f5;
- overflow: hidden;
- cursor: pointer;
- img {
- width: 100%;
- }
- }
- .avatar-preview:hover {
- box-shadow: 0 0 5px #000000;
- box-shadow: 0 0 5px rgba(0,0,0,.15);
- }
- .preview-lg {
- height: 184px;
- width: 184px;
- margin-top: 15px;
- }
- .preview-md {
- height: 100px;
- width: 100px;
- }
- .preview-sm {
- height: 45px;
- width: 45px;
- }
- .avatar-input, .avatar-src, .avatar-data {
- display: none !important;
- }
- .avatar-btns {
- margin-top: 30px;
- margin-bottom: 15px;
- }
- .avatar-btns .btn-group {
- margin-right: 5px;
- }
- @media (min-width: 992px) {
- .avatar-preview {
- float: none;
- }
- }
- }
- ._file.flag-icon- {
- text-align: left;
- }
- .dynamic-box {
- border: 1px solid #f8bb86;
- padding: 10px;
- border-radius: 4px;
- .iwb-dynamic-box {
- margin: 5px 0;
- .dynamic-label {
- text-align: left;
- padding-left: 1em;
- }
- .dynamic-control {
- text-align: center
- }
- .btn-add {
- color: #fff;
- background-color: #28a745;
- border-color: #28a745;
- box-shadow: none;
- &:hover, &:not(:disabled):not(.disabled):active {
- color: #fff;
- background-color: #218838;
- border-color: #1e7e34;
- }
- }
- .btn-delete {
- color: #fff;
- background-color: #dc3545;
- border-color: #dc3545;
- box-shadow: none;
- &:hover, &:not(:disabled):not(.disabled):active {
- color: #fff;
- background-color: #c82333;
- border-color: #c82333;
- }
- }
- }
- }
- .evolution.non-evolution.number {
- font-size: 100%;
- }
|