This commit is contained in:
Hoang Huu 2019-09-25 15:34:40 +07:00
commit f5f29f508c
2 changed files with 58 additions and 12 deletions

@ -3826,13 +3826,17 @@ header#masthead {
border-bottom: 1px solid #eee; border-bottom: 1px solid #eee;
padding-bottom: 15px; } padding-bottom: 15px; }
.card-item .heading i { .card-item .heading i {
background: rgba(0, 0, 0, 0.18); background: #2f73e9;
padding: 15px; color: #FFF;
border-radius: 50%; padding: 10px;
min-width: 45px; min-width: 32px;
text-align: center; text-align: center;
margin-right: 10px; margin-right: 10px;
color: #FFF; } border-radius: 50%;
-webkit-border-radius: 50%;
-moz-border-radius: 50%;
-ms-border-radius: 50%;
-o-border-radius: 50%; }
.card-item .heading span { .card-item .heading span {
font-size: 16px; font-size: 16px;
color: #23282d; color: #23282d;
@ -3856,6 +3860,12 @@ header#masthead {
height: 100%; height: 100%;
z-index: 100; z-index: 100;
top: 0px; } top: 0px; }
.opalestate-user-management .user-dasboard-sidebar .navbar-brand {
text-align: center;
margin: 50px 0 60px 0; }
.opalestate-user-management .user-dasboard-sidebar .navbar-brand .custom-logo-link {
padding: 60px 30px;
border-bottom: 1px solid rgba(255, 255, 255, 0.1); }
.opalestate-user-management .user-dasboard-sidebar .user-dasboard-sidebar-inner { .opalestate-user-management .user-dasboard-sidebar .user-dasboard-sidebar-inner {
padding-top: 20px; } padding-top: 20px; }
.opalestate-user-management .navbar-brand { .opalestate-user-management .navbar-brand {
@ -3863,7 +3873,19 @@ header#masthead {
.opalestate-user-management .account-links { .opalestate-user-management .account-links {
list-style: none; list-style: none;
padding: 0; padding: 0;
margin: 0; } margin: 0;
max-height: 520px;
overflow-y: scroll; }
@media (max-width: 991px) {
.opalestate-user-management .account-links {
max-height: 400px; } }
.opalestate-user-management .account-links::-webkit-scrollbar {
width: 8px;
background-color: #1d2329; }
.opalestate-user-management .account-links::-webkit-scrollbar-thumb {
border-radius: 10px;
-webkit-box-shadow: inset 0 0 3px rgba(0, 0, 0, 0.3);
background-color: #555; }
.opalestate-user-management .account-links a { .opalestate-user-management .account-links a {
padding: 8px 20px; padding: 8px 20px;
width: 100%; width: 100%;

@ -245,13 +245,13 @@
border-bottom:1px solid #eee; border-bottom:1px solid #eee;
padding-bottom: $grid-gutter-width/2; padding-bottom: $grid-gutter-width/2;
i { i {
background:rgba(0, 0, 0, .18); background:$primary;
padding:15px; color: $white;
border-radius:50%; padding:10px;
min-width: 45px; min-width: 32px;
text-align: center; text-align: center;
margin-right: 10px; margin-right: 10px;
color:$white; @include border-radius(50%);
} }
span { span {
font-size: 16px; font-size: 16px;
@ -285,6 +285,14 @@
height:100%; height:100%;
z-index:100; z-index:100;
top:0px; top:0px;
.navbar-brand {
text-align: center;
margin: 50px 0 60px 0;
.custom-logo-link {
padding: $grid-gutter-width*2 $grid-gutter-width;
border-bottom:1px solid rgba(255,255,255, 0.1);
}
}
.user-dasboard-sidebar-inner{ .user-dasboard-sidebar-inner{
padding-top:20px; padding-top:20px;
} }
@ -297,6 +305,22 @@
list-style:none; list-style:none;
padding:0; padding:0;
margin : 0; margin : 0;
max-height: 520px;
overflow-y: scroll;
@media(max-width: 991px) {
max-height: 400px;
}
&::-webkit-scrollbar {
width: 8px;
background-color: #1d2329;
}
&::-webkit-scrollbar-thumb {
border-radius: 10px;
-webkit-box-shadow: inset 0 0 3px rgba(0,0,0,.3);
background-color: #555;
}
a { a {
padding:8px 20px; padding:8px 20px;
width:100%; width:100%;