2024-10-10
This commit is contained in:
124
web/bsadmin/assets/sass/card.scss
Normal file
124
web/bsadmin/assets/sass/card.scss
Normal file
@@ -0,0 +1,124 @@
|
||||
@import "variable"; // variable
|
||||
|
||||
|
||||
|
||||
|
||||
.card-body{
|
||||
background: $white;
|
||||
}
|
||||
|
||||
|
||||
.card {
|
||||
background: $white;
|
||||
margin: 15px 0px 15px 0px;
|
||||
padding: 20px;
|
||||
border: 0px;
|
||||
border-radius: 0px;
|
||||
box-shadow: 0 0 10px 5px $border;
|
||||
}
|
||||
|
||||
.card-header {
|
||||
h4 {
|
||||
display: inline-block;
|
||||
}
|
||||
p {
|
||||
font-family: $mol;
|
||||
margin-bottom: 12px;
|
||||
}
|
||||
}
|
||||
.single-card {
|
||||
h4 {
|
||||
font-size:16px;
|
||||
}
|
||||
.sparkline-box {
|
||||
float:right;
|
||||
}
|
||||
.visit-count {
|
||||
float: left;
|
||||
padding-top: 18px;
|
||||
line-height: 10px;
|
||||
font-size: 18px;
|
||||
}
|
||||
}
|
||||
|
||||
.card-header-right-icon {
|
||||
display: inline-block;
|
||||
float: right;
|
||||
li {
|
||||
float: right;
|
||||
padding-left: 14px;
|
||||
color: $text-light;
|
||||
cursor: pointer;
|
||||
vertical-align: middle;
|
||||
transition: all 0.5s ease-in-out;
|
||||
display: inline-block;
|
||||
.ti-close {
|
||||
font-size: 12px;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.card-option {
|
||||
position: relative;
|
||||
}
|
||||
|
||||
.card-option-dropdown {
|
||||
display: none;
|
||||
// background: $white;
|
||||
// padding: 15px;
|
||||
// position: absolute;
|
||||
left: auto;
|
||||
right: 0;
|
||||
// width: 150px;
|
||||
// font-family: $mol;
|
||||
// border: 1px solid $border;
|
||||
// border-radius: 3px;
|
||||
li {
|
||||
display: block;
|
||||
float: left;
|
||||
width: 100%;
|
||||
padding: 0px;
|
||||
a {
|
||||
line-height: 25px;
|
||||
font-size: 12px;
|
||||
i {
|
||||
margin-right: 10px;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
||||
.doc-link {
|
||||
float: right;
|
||||
position: relative;
|
||||
transition: all 0.5s ease-in-out;
|
||||
&:hover,
|
||||
&:focus {
|
||||
&:after {
|
||||
opacity: 1;
|
||||
visibility: visible;
|
||||
}
|
||||
}
|
||||
&:after {
|
||||
border: 1px solid $border;
|
||||
border-radius: 5px;
|
||||
content: "Documentation";
|
||||
font-size: 12px;
|
||||
padding: 5px 10px;
|
||||
position: absolute;
|
||||
right: -30px;
|
||||
top: -30px;
|
||||
opacity: 0;
|
||||
visibility: hidden;
|
||||
transition: all 0.5s ease-in-out;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
.jqstooltip {
|
||||
-webkit-box-sizing: content-box;
|
||||
-moz-box-sizing: content-box;
|
||||
box-sizing: content-box;
|
||||
}
|
||||
Reference in New Issue
Block a user