342 lines
7.4 KiB
CSS
342 lines
7.4 KiB
CSS
/* List View */
|
|
#list-view h4 a {
|
|
color: #000;
|
|
text-decoration: none;
|
|
}
|
|
|
|
/* List */
|
|
#list-view #member-list .gender,
|
|
#list-view #member-list td[class^="gender-"] {
|
|
width: 5px;
|
|
padding: 0;
|
|
}
|
|
#list-view #member-list td.gender-man {
|
|
background-color: #34ADFF
|
|
}
|
|
#list-view #member-list td.gender-woman {
|
|
background-color: #FF3196
|
|
}
|
|
|
|
/* Abstract */
|
|
#list-view #member-abstract,
|
|
#list-view #member-card {
|
|
list-style: none;
|
|
margin: 0;
|
|
padding: 0;
|
|
}
|
|
#list-view #member-abstract > li {
|
|
background-color: #FFFFFF;
|
|
width: 250px;
|
|
box-shadow: 0px 0px 5px rgba(0, 0, 0, .2);
|
|
position: relative;
|
|
overflow: hidden;
|
|
margin: 5px;
|
|
min-height: 280px;
|
|
float: left;
|
|
-webkit-border-radius: 5px;
|
|
-moz-border-radius: 5px;
|
|
border-radius: 5px;
|
|
}
|
|
#list-view #member-abstract hr {
|
|
margin: 5px 0 10px;
|
|
border-top: 1px solid #e6e6e6;
|
|
}
|
|
#list-view #member-abstract [class^="gender-"],
|
|
#list-view #member-abstract [class*=" gender-"] {
|
|
display: block;
|
|
position: absolute;
|
|
width: 0px;
|
|
height: 0px;
|
|
border-style: solid;
|
|
border-width: 30px 30px 0 0;
|
|
top: 0;
|
|
left: 0;
|
|
z-index: 1;
|
|
}
|
|
#list-view #member-abstract .gender-men {
|
|
border-color: #34ADFF transparent transparent transparent;
|
|
}
|
|
#list-view #member-abstract .gender-women {
|
|
border-color: #FF3196 transparent transparent transparent;
|
|
}
|
|
#list-view #member-abstract .member-avatar {
|
|
position: relative;
|
|
-webkit-border-radius: 5px 5px 0 0;
|
|
-moz-border-radius: 5px 5px 0 0;
|
|
border-radius: 5px 5px 0 0;
|
|
overflow: hidden;
|
|
height: 120px;
|
|
}
|
|
#list-view #member-abstract .member-avatar .action {
|
|
position: absolute;
|
|
z-index: 1;
|
|
top: 45px;
|
|
line-height: 30px;
|
|
left: 50%;
|
|
width: 80%;
|
|
margin-left: -40%;
|
|
text-align: center;
|
|
visibility: hidden;
|
|
}
|
|
#list-view #member-abstract .member-avatar .action > a {
|
|
color: #FFFFFF;
|
|
text-decoration: none;
|
|
font-size: 1.5em;
|
|
background-color: #0088cc;
|
|
padding: 3px 5px;
|
|
-webkit-border-radius: 3px;
|
|
-moz-border-radius: 3px;
|
|
border-radius: 3px;
|
|
margin-left: 5px;
|
|
box-shadow: 5px 5px 10px rgba(0, 0, 0, .4);
|
|
}
|
|
#list-view #member-abstract .member-avatar .action > a:first-child {
|
|
margin-left: 0px;
|
|
}
|
|
#list-view #member-abstract .member-avatar .action > a.edit {
|
|
}
|
|
#list-view #member-abstract .member-avatar .action > a.key {
|
|
}
|
|
#list-view #member-abstract .member-avatar .action > a.trash {
|
|
background-color: #b94a48;
|
|
}
|
|
#list-view #member-abstract .member-avatar > span {
|
|
position: absolute;
|
|
width: 250px;
|
|
height: 120px;
|
|
display: block;
|
|
margin: 0;
|
|
background-color: #000000;
|
|
-webkit-border-radius: 5px 5px 0 0;
|
|
-moz-border-radius: 5px 5px 0 0;
|
|
border-radius: 5px 5px 0 0;
|
|
opacity: 0;
|
|
-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
|
|
filter: alpha(opacity=0);
|
|
}
|
|
#list-view #member-abstract > li:hover .member-avatar > span {
|
|
opacity: .4;
|
|
-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=40)";
|
|
filter: alpha(opacity=40);
|
|
}
|
|
#list-view #member-abstract > li:hover .member-avatar .action {
|
|
visibility: visible;
|
|
}
|
|
#list-view #member-abstract .member-avatar img {
|
|
width: 100%;
|
|
}
|
|
#list-view #member-abstract .member-info {
|
|
padding: 10px;
|
|
-webkit-border-radius: 0 0 5px 5px;
|
|
-moz-border-radius: 0 0 5px 5px;
|
|
border-radius: 0 0 5px 5px;
|
|
}
|
|
#list-view #member-abstract .member-name {
|
|
margin: 0;
|
|
}
|
|
#list-view #member-abstract .member-roles {
|
|
margin: 0;
|
|
list-style: none;
|
|
}
|
|
#list-view #member-abstract .member-roles li {
|
|
margin-bottom: 5px;
|
|
}
|
|
#list-view #member-abstract .member-roles .member-staturs {
|
|
padding: 2px 4px;
|
|
font-size: 11.844px;
|
|
}
|
|
|
|
/* Card */
|
|
#list-view #member-card > li {
|
|
width: 160px;
|
|
margin: 10px 20px;
|
|
float: left;
|
|
position: relative;
|
|
}
|
|
#list-view #member-card > li:hover .member-avatar > span {
|
|
opacity: 0.4;
|
|
-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=40)";
|
|
filter: alpha(opacity=40);
|
|
}
|
|
#list-view #member-card > li:hover .member-avatar .action {
|
|
visibility: visible;
|
|
}
|
|
#list-view #member-card .member-avatar {
|
|
width: 150px;
|
|
height: 150px;
|
|
overflow: hidden;
|
|
border-radius: 500px;
|
|
border: 5px solid #FFFFFF;
|
|
box-shadow: 0px 0px 5px rgba(0, 0, 0, .2);
|
|
left: 0;
|
|
top: 0;
|
|
}
|
|
#list-view #member-card .member-avatar.gender-men {
|
|
border-color: #34ADFF;
|
|
}
|
|
#list-view #member-card .member-avatar.gender-women {
|
|
border-color: #FF3196;
|
|
}
|
|
#list-view #member-card .member-avatar img {
|
|
/*width: 100%;*/
|
|
max-width: none;
|
|
}
|
|
#list-view #member-card .member-avatar > span {
|
|
position: absolute;
|
|
width: 150px;
|
|
height: 150px;
|
|
top: 5px;
|
|
left: 5px;
|
|
display: block;
|
|
margin: 0;
|
|
background-color: #000000;
|
|
border-radius: 500px;
|
|
opacity: 0;
|
|
-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
|
|
filter: alpha(opacity=0);
|
|
}
|
|
#list-view #member-card .member-avatar .action {
|
|
position: absolute;
|
|
z-index: 1;
|
|
top: 65px;
|
|
line-height: 30px;
|
|
left: 50%;
|
|
width: 140px;
|
|
margin-left: -70px;
|
|
text-align: center;
|
|
visibility: hidden;
|
|
}
|
|
#list-view #member-card .member-avatar .action > a {
|
|
color: #FFFFFF;
|
|
font-size: 1.2em;
|
|
background-color: #0088cc;
|
|
text-decoration: none;
|
|
padding: 3px 5px;
|
|
border-radius: 3px;
|
|
margin-left: 5px;
|
|
box-shadow: 5px 5px 10px rgba(0, 0, 0, .4);
|
|
}
|
|
#list-view #member-card .member-avatar .action > a:first-child {
|
|
margin-left: 0px;
|
|
}
|
|
#list-view #member-card .member-avatar .action > a.edit {
|
|
}
|
|
#list-view #member-card .member-avatar .action > a.key {
|
|
}
|
|
#list-view #member-card .member-avatar .action > a.trash {
|
|
background-color: #b94a48;
|
|
}
|
|
|
|
/* Profile */
|
|
#profile {
|
|
|
|
}
|
|
#profile #basic-info {
|
|
position: absolute;
|
|
width: 340px;
|
|
margin-right: 10px;
|
|
padding-right: 10px;
|
|
border-right: 1px solid #e5e5e5;
|
|
}
|
|
#profile #basic-info .basic-profile {
|
|
margin-left: 116px;
|
|
}
|
|
#profile #basic-info .basic-profile h4 {
|
|
margin: 0 auto;
|
|
max-width: 224px;
|
|
overflow: hidden;
|
|
text-overflow: ellipsis;
|
|
white-space: nowrap;
|
|
}
|
|
#profile #basic-info .basic-profile .btn {
|
|
display: block;
|
|
margin-top: 40px;
|
|
}
|
|
#profile #basic-info .member-avatar {
|
|
width: 106px;
|
|
height: 106px;
|
|
float: left;
|
|
}
|
|
#profile #basic-info .member-avatar img {
|
|
border: 3px solid #ffffff;
|
|
width: 100%;
|
|
max-width: none;
|
|
}
|
|
#profile #basic-info .member-avatar.gender-men img {
|
|
border-color: #34ADFF;
|
|
}
|
|
#profile #basic-info .member-avatar.gender-women img {
|
|
border-color: #FF3196;
|
|
}
|
|
#profile #member-roles {
|
|
clear: both;
|
|
margin-top: 30px;
|
|
}
|
|
#profile #member-roles .roles h4 {
|
|
position: relative;
|
|
border-bottom: 5px solid #b1b1b1;
|
|
height: 8px;
|
|
}
|
|
#profile #member-roles .roles h4 span {
|
|
position: absolute;
|
|
background-color: #F3F3F3;
|
|
padding: 0 5px;
|
|
left: 50%;
|
|
}
|
|
#profile #member-roles .roles dl {
|
|
background-color: #ffffff;
|
|
padding: 10px;
|
|
}
|
|
#profile #member-roles .roles:last-child dl {
|
|
margin-bottom: 0;
|
|
}
|
|
#profile #member-roles .roles dt {
|
|
border-bottom: 1px dotted #e7e7e7;
|
|
font-size: 1.2em;
|
|
margin-top: 20px;
|
|
}
|
|
#profile #member-roles .roles dt:first-child {
|
|
margin-top: 0px;
|
|
}
|
|
#profile #member-roles .roles dd {
|
|
color: #999999;
|
|
}
|
|
#profile #member-module {
|
|
margin-left: 360px;
|
|
}
|
|
#profile #member-module #module-navbar.scroll-to-fixed-fixed {
|
|
background-color: #F3F3F3;
|
|
padding-top: 20px;
|
|
}
|
|
#profile #member-module #module-navbar.scroll-to-fixed-fixed .navbar {
|
|
margin-bottom: 10px;
|
|
}
|
|
#profile #member-module #module-content {
|
|
padding: 0 10px;
|
|
}
|
|
|
|
|
|
/* Responsive */
|
|
@media (max-width: 979px) {
|
|
#profile #member-info {
|
|
width: 100%;
|
|
position: relative;
|
|
bottom: auto;
|
|
top: auto;
|
|
}
|
|
#profile #member-info #basic-info {
|
|
margin-bottom: 0;
|
|
}
|
|
#profile #member-info #role-groups {
|
|
overflow: auto;
|
|
}
|
|
#profile #member-info #role-groups .content {
|
|
margin-right: 0;
|
|
position: static;
|
|
overflow: auto;
|
|
overflow-x: auto;
|
|
}
|
|
#profile .member-module {
|
|
margin-left: 0;
|
|
}
|
|
} |