123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960 |
- /*!
- * AdminLTE v3.2.0
- * Only Pages
- * Author: Colorlib
- * Website: AdminLTE.io <https://adminlte.io>
- * License: Open source - MIT <https://opensource.org/licenses/MIT>
- */
- .close, .mailbox-attachment-close {
- float: right;
- font-size: 1.5rem;
- font-weight: 700;
- line-height: 1;
- color: #000;
- text-shadow: 0 1px 0 #fff;
- opacity: .5;
- }
- .close:hover, .mailbox-attachment-close:hover {
- color: #000;
- text-decoration: none;
- }
- .close:not(:disabled):not(.disabled):hover, .mailbox-attachment-close:not(:disabled):not(.disabled):hover, .close:not(:disabled):not(.disabled):focus, .mailbox-attachment-close:not(:disabled):not(.disabled):focus {
- opacity: .75;
- }
- button.close, button.mailbox-attachment-close {
- padding: 0;
- background-color: transparent;
- border: 0;
- }
- a.close.disabled, a.disabled.mailbox-attachment-close {
- pointer-events: none;
- }
- @-webkit-keyframes flipInX {
- 0% {
- -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
- transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
- transition-timing-function: ease-in;
- opacity: 0;
- }
- 40% {
- -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
- transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
- transition-timing-function: ease-in;
- }
- 60% {
- -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
- transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
- opacity: 1;
- }
- 80% {
- -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
- transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
- }
- 100% {
- -webkit-transform: perspective(400px);
- transform: perspective(400px);
- }
- }
- @keyframes flipInX {
- 0% {
- -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
- transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
- transition-timing-function: ease-in;
- opacity: 0;
- }
- 40% {
- -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
- transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
- transition-timing-function: ease-in;
- }
- 60% {
- -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
- transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
- opacity: 1;
- }
- 80% {
- -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
- transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
- }
- 100% {
- -webkit-transform: perspective(400px);
- transform: perspective(400px);
- }
- }
- @-webkit-keyframes fadeIn {
- from {
- opacity: 0;
- }
- to {
- opacity: 1;
- }
- }
- @keyframes fadeIn {
- from {
- opacity: 0;
- }
- to {
- opacity: 1;
- }
- }
- @-webkit-keyframes fadeOut {
- from {
- opacity: 1;
- }
- to {
- opacity: 0;
- }
- }
- @keyframes fadeOut {
- from {
- opacity: 1;
- }
- to {
- opacity: 0;
- }
- }
- @-webkit-keyframes shake {
- 0% {
- -webkit-transform: translate(2px, 1px) rotate(0deg);
- transform: translate(2px, 1px) rotate(0deg);
- }
- 10% {
- -webkit-transform: translate(-1px, -2px) rotate(-2deg);
- transform: translate(-1px, -2px) rotate(-2deg);
- }
- 20% {
- -webkit-transform: translate(-3px, 0) rotate(3deg);
- transform: translate(-3px, 0) rotate(3deg);
- }
- 30% {
- -webkit-transform: translate(0, 2px) rotate(0deg);
- transform: translate(0, 2px) rotate(0deg);
- }
- 40% {
- -webkit-transform: translate(1px, -1px) rotate(1deg);
- transform: translate(1px, -1px) rotate(1deg);
- }
- 50% {
- -webkit-transform: translate(-1px, 2px) rotate(-1deg);
- transform: translate(-1px, 2px) rotate(-1deg);
- }
- 60% {
- -webkit-transform: translate(-3px, 1px) rotate(0deg);
- transform: translate(-3px, 1px) rotate(0deg);
- }
- 70% {
- -webkit-transform: translate(2px, 1px) rotate(-2deg);
- transform: translate(2px, 1px) rotate(-2deg);
- }
- 80% {
- -webkit-transform: translate(-1px, -1px) rotate(4deg);
- transform: translate(-1px, -1px) rotate(4deg);
- }
- 90% {
- -webkit-transform: translate(2px, 2px) rotate(0deg);
- transform: translate(2px, 2px) rotate(0deg);
- }
- 100% {
- -webkit-transform: translate(1px, -2px) rotate(-1deg);
- transform: translate(1px, -2px) rotate(-1deg);
- }
- }
- @keyframes shake {
- 0% {
- -webkit-transform: translate(2px, 1px) rotate(0deg);
- transform: translate(2px, 1px) rotate(0deg);
- }
- 10% {
- -webkit-transform: translate(-1px, -2px) rotate(-2deg);
- transform: translate(-1px, -2px) rotate(-2deg);
- }
- 20% {
- -webkit-transform: translate(-3px, 0) rotate(3deg);
- transform: translate(-3px, 0) rotate(3deg);
- }
- 30% {
- -webkit-transform: translate(0, 2px) rotate(0deg);
- transform: translate(0, 2px) rotate(0deg);
- }
- 40% {
- -webkit-transform: translate(1px, -1px) rotate(1deg);
- transform: translate(1px, -1px) rotate(1deg);
- }
- 50% {
- -webkit-transform: translate(-1px, 2px) rotate(-1deg);
- transform: translate(-1px, 2px) rotate(-1deg);
- }
- 60% {
- -webkit-transform: translate(-3px, 1px) rotate(0deg);
- transform: translate(-3px, 1px) rotate(0deg);
- }
- 70% {
- -webkit-transform: translate(2px, 1px) rotate(-2deg);
- transform: translate(2px, 1px) rotate(-2deg);
- }
- 80% {
- -webkit-transform: translate(-1px, -1px) rotate(4deg);
- transform: translate(-1px, -1px) rotate(4deg);
- }
- 90% {
- -webkit-transform: translate(2px, 2px) rotate(0deg);
- transform: translate(2px, 2px) rotate(0deg);
- }
- 100% {
- -webkit-transform: translate(1px, -2px) rotate(-1deg);
- transform: translate(1px, -2px) rotate(-1deg);
- }
- }
- @-webkit-keyframes wobble {
- 0% {
- -webkit-transform: none;
- transform: none;
- }
- 15% {
- -webkit-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
- transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
- }
- 30% {
- -webkit-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
- transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
- }
- 45% {
- -webkit-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
- transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
- }
- 60% {
- -webkit-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
- transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
- }
- 75% {
- -webkit-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
- transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
- }
- 100% {
- -webkit-transform: none;
- transform: none;
- }
- }
- @keyframes wobble {
- 0% {
- -webkit-transform: none;
- transform: none;
- }
- 15% {
- -webkit-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
- transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
- }
- 30% {
- -webkit-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
- transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
- }
- 45% {
- -webkit-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
- transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
- }
- 60% {
- -webkit-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
- transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
- }
- 75% {
- -webkit-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
- transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
- }
- 100% {
- -webkit-transform: none;
- transform: none;
- }
- }
- .mailbox-messages > .table {
- margin: 0;
- }
- .mailbox-controls {
- padding: 5px;
- }
- .mailbox-controls.with-border {
- border-bottom: 1px solid rgba(0, 0, 0, 0.125);
- }
- .mailbox-read-info {
- border-bottom: 1px solid rgba(0, 0, 0, 0.125);
- padding: 10px;
- }
- .mailbox-read-info h3 {
- font-size: 20px;
- margin: 0;
- }
- .mailbox-read-info h5 {
- margin: 0;
- padding: 5px 0 0;
- }
- .mailbox-read-time {
- color: #999;
- font-size: 13px;
- }
- .mailbox-read-message {
- padding: 10px;
- }
- .mailbox-attachments {
- padding-left: 0;
- list-style: none;
- }
- .mailbox-attachments li {
- border: 1px solid #eee;
- float: left;
- margin-bottom: 10px;
- margin-right: 10px;
- width: 200px;
- }
- .mailbox-attachment-name {
- color: #666;
- font-weight: 700;
- }
- .mailbox-attachment-icon,
- .mailbox-attachment-info,
- .mailbox-attachment-size {
- display: block;
- }
- .mailbox-attachment-info {
- background-color: #f8f9fa;
- padding: 10px;
- }
- .mailbox-attachment-size {
- color: #999;
- font-size: 12px;
- }
- .mailbox-attachment-size > span {
- display: inline-block;
- padding-top: .75rem;
- }
- .mailbox-attachment-icon {
- color: #666;
- font-size: 65px;
- max-height: 132.5px;
- padding: 20px 10px;
- text-align: center;
- }
- .mailbox-attachment-icon.has-img {
- padding: 0;
- }
- .mailbox-attachment-icon.has-img > img {
- height: auto;
- max-width: 100%;
- }
- .lockscreen {
- background-color: #e9ecef;
- }
- .lockscreen .lockscreen-name {
- font-weight: 600;
- text-align: center;
- }
- .lockscreen-logo {
- font-size: 35px;
- font-weight: 300;
- margin-bottom: 25px;
- text-align: center;
- }
- .lockscreen-logo a {
- color: #495057;
- }
- .lockscreen-wrapper {
- margin: 0 auto;
- margin-top: 10%;
- max-width: 400px;
- }
- .lockscreen-item {
- border-radius: 4px;
- background-color: #fff;
- margin: 10px auto 30px;
- padding: 0;
- position: relative;
- width: 290px;
- }
- .lockscreen-image {
- border-radius: 50%;
- background-color: #fff;
- left: -10px;
- padding: 5px;
- position: absolute;
- top: -25px;
- z-index: 10;
- }
- .lockscreen-image > img {
- border-radius: 50%;
- height: 70px;
- width: 70px;
- }
- .lockscreen-credentials {
- margin-left: 70px;
- }
- .lockscreen-credentials .form-control {
- border: 0;
- }
- .lockscreen-credentials .btn {
- background-color: #fff;
- border: 0;
- padding: 0 10px;
- }
- .lockscreen-footer {
- margin-top: 10px;
- }
- .dark-mode .lockscreen-item {
- background-color: #343a40;
- }
- .dark-mode .lockscreen-logo a {
- color: #fff;
- }
- .dark-mode .lockscreen-credentials .btn {
- background-color: #343a40;
- }
- .dark-mode .lockscreen-image {
- background-color: #6c757d;
- }
- .login-logo,
- .register-logo {
- font-size: 2.1rem;
- font-weight: 300;
- margin-bottom: .9rem;
- text-align: center;
- }
- .login-logo a,
- .register-logo a {
- color: #495057;
- }
- .login-page,
- .register-page {
- -ms-flex-align: center;
- align-items: center;
- background-color: #e9ecef;
- display: -ms-flexbox;
- display: flex;
- -ms-flex-direction: column;
- flex-direction: column;
- height: 100vh;
- -ms-flex-pack: center;
- justify-content: center;
- }
- .login-box,
- .register-box {
- width: 360px;
- }
- @media (max-width: 576px) {
- .login-box,
- .register-box {
- margin-top: .5rem;
- width: 90%;
- }
- }
- .login-box .card,
- .register-box .card {
- margin-bottom: 0;
- }
- .login-card-body,
- .register-card-body {
- background-color: #fff;
- border-top: 0;
- color: #666;
- padding: 20px;
- }
- .login-card-body .input-group .form-control,
- .register-card-body .input-group .form-control {
- border-right: 0;
- }
- .login-card-body .input-group .form-control:focus,
- .register-card-body .input-group .form-control:focus {
- box-shadow: none;
- }
- .login-card-body .input-group .form-control:focus ~ .input-group-prepend .input-group-text,
- .login-card-body .input-group .form-control:focus ~ .input-group-append .input-group-text,
- .register-card-body .input-group .form-control:focus ~ .input-group-prepend .input-group-text,
- .register-card-body .input-group .form-control:focus ~ .input-group-append .input-group-text {
- border-color: #80bdff;
- }
- .login-card-body .input-group .form-control.is-valid:focus,
- .register-card-body .input-group .form-control.is-valid:focus {
- box-shadow: none;
- }
- .login-card-body .input-group .form-control.is-valid ~ .input-group-prepend .input-group-text,
- .login-card-body .input-group .form-control.is-valid ~ .input-group-append .input-group-text,
- .register-card-body .input-group .form-control.is-valid ~ .input-group-prepend .input-group-text,
- .register-card-body .input-group .form-control.is-valid ~ .input-group-append .input-group-text {
- border-color: #28a745;
- }
- .login-card-body .input-group .form-control.is-invalid:focus,
- .register-card-body .input-group .form-control.is-invalid:focus {
- box-shadow: none;
- }
- .login-card-body .input-group .form-control.is-invalid ~ .input-group-append .input-group-text,
- .register-card-body .input-group .form-control.is-invalid ~ .input-group-append .input-group-text {
- border-color: #dc3545;
- }
- .login-card-body .input-group .input-group-text,
- .register-card-body .input-group .input-group-text {
- background-color: transparent;
- border-bottom-right-radius: 0.25rem;
- border-left: 0;
- border-top-right-radius: 0.25rem;
- color: #777;
- transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
- }
- .login-box-msg,
- .register-box-msg {
- margin: 0;
- padding: 0 20px 20px;
- text-align: center;
- }
- .social-auth-links {
- margin: 10px 0;
- }
- .dark-mode .login-card-body,
- .dark-mode .register-card-body {
- background-color: #343a40;
- border-color: #6c757d;
- color: #fff;
- }
- .dark-mode .login-logo a,
- .dark-mode .register-logo a {
- color: #fff;
- }
- .error-page {
- margin: 20px auto 0;
- width: 600px;
- }
- @media (max-width: 767.98px) {
- .error-page {
- width: 100%;
- }
- }
- .error-page > .headline {
- float: left;
- font-size: 100px;
- font-weight: 300;
- }
- @media (max-width: 767.98px) {
- .error-page > .headline {
- float: none;
- text-align: center;
- }
- }
- .error-page > .error-content {
- display: block;
- margin-left: 190px;
- }
- @media (max-width: 767.98px) {
- .error-page > .error-content {
- margin-left: 0;
- }
- }
- .error-page > .error-content > h3 {
- font-size: 25px;
- font-weight: 300;
- }
- @media (max-width: 767.98px) {
- .error-page > .error-content > h3 {
- text-align: center;
- }
- }
- .invoice {
- background-color: #fff;
- border: 1px solid rgba(0, 0, 0, 0.125);
- position: relative;
- }
- .invoice-title {
- margin-top: 0;
- }
- .dark-mode .invoice {
- background-color: #343a40;
- }
- .profile-user-img {
- border: 3px solid #adb5bd;
- margin: 0 auto;
- padding: 3px;
- width: 100px;
- }
- .profile-username {
- font-size: 21px;
- margin-top: 5px;
- }
- .post {
- border-bottom: 1px solid #adb5bd;
- color: #666;
- margin-bottom: 15px;
- padding-bottom: 15px;
- }
- .post:last-of-type {
- border-bottom: 0;
- margin-bottom: 0;
- padding-bottom: 0;
- }
- .post .user-block {
- margin-bottom: 15px;
- width: 100%;
- }
- .post .row {
- width: 100%;
- }
- .dark-mode .post {
- color: #fff;
- border-color: #6c757d;
- }
- .product-image {
- max-width: 100%;
- height: auto;
- width: 100%;
- }
- .product-image-thumbs {
- -ms-flex-align: stretch;
- align-items: stretch;
- display: -ms-flexbox;
- display: flex;
- margin-top: 2rem;
- }
- .product-image-thumb {
- box-shadow: 0 1px 2px rgba(0, 0, 0, 0.075);
- border-radius: 0.25rem;
- background-color: #fff;
- border: 1px solid #dee2e6;
- display: -ms-flexbox;
- display: flex;
- margin-right: 1rem;
- max-width: 7rem;
- padding: 0.5rem;
- }
- .product-image-thumb img {
- max-width: 100%;
- height: auto;
- -ms-flex-item-align: center;
- align-self: center;
- }
- .product-image-thumb:hover {
- opacity: .5;
- }
- .product-share a {
- margin-right: .5rem;
- }
- .projects td {
- vertical-align: middle;
- }
- .projects .list-inline {
- margin-bottom: 0;
- }
- .projects img.table-avatar,
- .projects .table-avatar img {
- border-radius: 50%;
- display: inline;
- width: 2.5rem;
- }
- .projects .project-state {
- text-align: center;
- }
- body.iframe-mode .main-sidebar {
- display: none;
- }
- body.iframe-mode .content-wrapper {
- margin-left: 0 !important;
- margin-top: 0 !important;
- padding-bottom: 0 !important;
- }
- body.iframe-mode .main-header,
- body.iframe-mode .main-footer {
- display: none;
- }
- body.iframe-mode-fullscreen {
- overflow: hidden;
- }
- body.iframe-mode-fullscreen.layout-navbar-fixed .wrapper .content-wrapper {
- margin-top: 0 !important;
- }
- .content-wrapper {
- height: 100%;
- }
- .content-wrapper.iframe-mode .btn-iframe-close {
- color: #dc3545;
- position: absolute;
- line-height: 1;
- right: .125rem;
- top: .125rem;
- z-index: 10;
- visibility: hidden;
- }
- .content-wrapper.iframe-mode .btn-iframe-close:hover, .content-wrapper.iframe-mode .btn-iframe-close:focus {
- -webkit-animation-name: fadeIn;
- animation-name: fadeIn;
- -webkit-animation-duration: 0.3s;
- animation-duration: 0.3s;
- -webkit-animation-fill-mode: both;
- animation-fill-mode: both;
- visibility: visible;
- }
- @media (hover: none) and (pointer: coarse) {
- .content-wrapper.iframe-mode .btn-iframe-close {
- visibility: visible;
- }
- }
- .content-wrapper.iframe-mode .navbar-nav {
- overflow-y: auto;
- width: 100%;
- }
- .content-wrapper.iframe-mode .navbar-nav .nav-link {
- white-space: nowrap;
- }
- .content-wrapper.iframe-mode .navbar-nav .nav-item {
- position: relative;
- }
- .content-wrapper.iframe-mode .navbar-nav .nav-item:hover .btn-iframe-close, .content-wrapper.iframe-mode .navbar-nav .nav-item:focus .btn-iframe-close {
- -webkit-animation-name: fadeIn;
- animation-name: fadeIn;
- -webkit-animation-duration: 0.3s;
- animation-duration: 0.3s;
- -webkit-animation-fill-mode: both;
- animation-fill-mode: both;
- visibility: visible;
- }
- @media (hover: none) and (pointer: coarse) {
- .content-wrapper.iframe-mode .navbar-nav .nav-item:hover .btn-iframe-close, .content-wrapper.iframe-mode .navbar-nav .nav-item:focus .btn-iframe-close {
- visibility: visible;
- }
- }
- .content-wrapper.iframe-mode .tab-content {
- position: relative;
- }
- .content-wrapper.iframe-mode .tab-pane + .tab-empty {
- display: none;
- }
- .content-wrapper.iframe-mode .tab-empty {
- width: 100%;
- display: -ms-flexbox;
- display: flex;
- -ms-flex-pack: center;
- justify-content: center;
- -ms-flex-align: center;
- align-items: center;
- }
- .content-wrapper.iframe-mode .tab-loading {
- position: absolute;
- top: 0;
- left: 0;
- width: 100%;
- display: none;
- background-color: #f4f6f9;
- }
- .content-wrapper.iframe-mode .tab-loading > div {
- display: -ms-flexbox;
- display: flex;
- -ms-flex-pack: center;
- justify-content: center;
- -ms-flex-align: center;
- align-items: center;
- width: 100%;
- height: 100%;
- }
- .content-wrapper.iframe-mode iframe {
- border: 0;
- width: 100%;
- height: 100%;
- margin-bottom: -8px;
- }
- .content-wrapper.iframe-mode iframe .content-wrapper {
- padding-bottom: 0 !important;
- }
- body.iframe-mode-fullscreen .content-wrapper.iframe-mode {
- position: absolute;
- left: 0;
- top: 0;
- right: 0;
- bottom: 0;
- margin-left: 0 !important;
- height: 100%;
- min-height: 100%;
- z-index: 1048;
- }
- .permanent-btn-iframe-close .btn-iframe-close {
- -webkit-animation: none !important;
- animation: none !important;
- visibility: visible !important;
- opacity: 1;
- }
- .dark-mode .content-wrapper.iframe-mode .tab-loading {
- background-color: #343a40;
- }
- .content-wrapper.kanban {
- height: 1px;
- }
- .content-wrapper.kanban .content {
- height: 100%;
- overflow-x: auto;
- overflow-y: hidden;
- }
- .content-wrapper.kanban .content .container,
- .content-wrapper.kanban .content .container-fluid {
- width: -webkit-max-content;
- width: -moz-max-content;
- width: max-content;
- display: -ms-flexbox;
- display: flex;
- -ms-flex-align: stretch;
- align-items: stretch;
- }
- .content-wrapper.kanban .content-header + .content {
- height: calc(100% - ((2 * 15px) + (1.8rem * 1.2)));
- }
- .content-wrapper.kanban .card .card-body {
- padding: .5rem;
- }
- .content-wrapper.kanban .card.card-row {
- width: 340px;
- display: inline-block;
- margin: 0 .5rem;
- }
- .content-wrapper.kanban .card.card-row:first-child {
- margin-left: 0;
- }
- .content-wrapper.kanban .card.card-row .card-body {
- height: calc(100% - (12px + (1.8rem * 1.2) + .5rem));
- overflow-y: auto;
- }
- .content-wrapper.kanban .card.card-row .card:last-child {
- margin-bottom: 0;
- border-bottom-width: 1px;
- }
- .content-wrapper.kanban .card.card-row .card .card-header {
- padding: .5rem .75rem;
- }
- .content-wrapper.kanban .card.card-row .card .card-body {
- padding: .75rem;
- }
- .content-wrapper.kanban .btn-tool.btn-link {
- text-decoration: underline;
- padding-left: 0;
- padding-right: 0;
- }
- /*# sourceMappingURL=adminlte.pages.css.map */
|