| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152 |
- /*
- * Sidebar
- */
- .content-wrapper {
- // hide elements by agile-admin completely
- .logo .logo-text {
- display: none;
- }
- @media(min-width:768px) {
- .sidebar {
- display: none;
- }
- }
- #page-wrapper {
- margin-left: 0;
- }
- }
- /*
- * Logo
- */
- .top-left-part {
- line-height: 0%;
- a {
- text-transform: none;
- }
- }
- .logo {
- // set transition for fill
- svg * {
- transition: fill 0.8s ease-out;
- }
- .dark-logo, .dark-logo-text {
- svg {
- fill: white;
- }
- }
- .light-logo, .light-logo-text {
- svg {
- fill: $dark-themecolor;
- }
- }
- .dark-logo, .light-logo {
- svg {
- padding: 12px;
- width: 50px;
- height: 50px;
- }
- }
- .dark-logo-text, .light-logo-text {
- svg {
- width: 156px;
- height: 50px;
- }
- }
- }
- // when sidebar is hidden
- .content-wrapper {
- .top-left-part {
- background-color: darken($topbar, 10%);
- .logo {
- .dark-logo, .light-logo {
- svg {
- fill: lighten($topbar, 15%);
- &:hover {
- .group1 { fill: #74bc45; }
- .group2 { fill: #1664b0; }
- }
- }
- }
- }
- }
- }
- /*
- * Alert
- */
- .alert {
- border-radius: 0;
- }
- /*
- * Form
- */
- .form-control {
- border-radius: 0;
- }
- /*
- * Button
- */
- .btn {
- &:not(.btn-rounded):not(.btn-circle) {
- border-radius: 0;
- }
- }
- button.btn.btn-link:hover {
- text-decoration: none;
- }
- /*
- * Dropdown
- */
- .dropdown-menu {
- border-radius: 0;
- > li > a {
- padding: 5px 15px;
- }
- }
- /*
- * Modal
- */
- .modal-content {
- border: none;
- border-radius: 0;
- .modal-header, .modal-footer {
- padding: 10px 15px;
- }
- }
- /*
- * Tab
- */
- .nav-tabs {
- > li > a {
- border-radius: 0;
- }
- }
- /*
- * Wells
- */
- .well {
- background-color: #f5f5f5;
- padding: .7em;
- &.well-sm {
- padding: .5em;
- }
- }
|