passman/sass/credentials.scss

121 lines
2.1 KiB
SCSS
Raw Normal View History

2016-09-13 22:31:07 +08:00
.credential-table {
2016-09-12 04:14:11 +08:00
width: 100%;
margin-top: 44px;
2016-09-13 22:31:07 +08:00
tr:hover {
2016-09-12 04:14:11 +08:00
background-color: darken(#fff, 4%);
}
2016-09-13 22:31:07 +08:00
tr {
td {
2016-09-12 04:14:11 +08:00
cursor: pointer;
padding: 5px;
border-bottom: 1px solid #eeeeee;
2016-09-13 22:31:07 +08:00
.label {
2016-09-12 17:38:45 +08:00
float: left;
}
2016-09-13 22:31:07 +08:00
.tags {
2016-09-12 04:14:11 +08:00
float: right;
2016-09-13 22:31:07 +08:00
.tag {
background-color: rgba(240, 240, 240, .9);
2016-09-12 04:14:11 +08:00
padding: 4px;
font-size: 11px;
}
}
2016-09-13 22:31:07 +08:00
.icon-more {
2016-09-12 04:14:11 +08:00
display: inline-block;
float: right;
margin-left: 5px;
margin-top: 1px;
opacity: 0.4;
height: 20px;
width: 32px;
cursor: pointer;
}
2016-09-13 22:31:07 +08:00
.icon-more:hover {
2016-09-12 04:14:11 +08:00
opacity: 1;
}
2016-09-12 05:40:06 +08:00
.popovermenu {
margin-top: 7px;
height: 100px;
width: 100px;
right: -2px !important;
box-shadow: 0 1px 10px rgba(50, 50, 50, .7);
ul {
display: block;
width: 100px;
height: 75px;
2016-09-13 22:31:07 +08:00
li {
2016-09-12 05:40:06 +08:00
padding: 0px;
}
2016-09-13 22:31:07 +08:00
.menuitem {
2016-09-12 05:40:06 +08:00
font-size: 12px;
display: inline;
}
}
.action {
padding: 10px;
margin: -10px;
}
}
2016-09-12 04:14:11 +08:00
}
}
}
2016-09-13 22:31:07 +08:00
.edit_credential {
2016-09-13 22:31:07 +08:00
label {
display: block;
}
2016-09-13 22:31:07 +08:00
input[type="text"], input[type="password"] {
width: 100%;
}
2016-09-13 22:31:07 +08:00
.tags {
float: left;
2016-09-13 22:31:07 +08:00
.tag {
background-color: rgba(240, 240, 240, .9);
padding: 4px;
font-size: 11px;
}
}
.credential_textarea {
width: 100%;
height: 100px;
}
.password_settings {
label {
overflow: hidden;
input[type="checkbox"] {
width: auto !important;
float: left;
}
.label {
2016-09-13 22:31:07 +08:00
&.sm{
font-size: 12px;
}
float: left;
}
}
}
2016-09-13 22:31:07 +08:00
.custom_fields {
margin-top: 10px;
table {
width: 100%;
thead {
th {
background-color: #0082c9;
color: #fff;
}
th.field_actions {
width: 15%;
}
}
tr {
td.field_actions {
font-size: 13px;
}
td, th {
padding: 5px;
}
}
}
}
2016-09-12 04:14:11 +08:00
}