2016-09-11 05:30:17 +08:00
|
|
|
.button-geen {
|
|
|
|
background: #37ce02;
|
|
|
|
color: #fff; }
|
2016-09-10 20:03:18 +08:00
|
|
|
|
2016-09-11 05:30:17 +08:00
|
|
|
.button-geen:hover {
|
|
|
|
background: #3ad802;
|
|
|
|
color: #fff; }
|
|
|
|
|
|
|
|
.button-red {
|
|
|
|
background: #ce3702;
|
|
|
|
color: #fff; }
|
|
|
|
|
|
|
|
.button-red:hover {
|
|
|
|
background: #d83a02;
|
|
|
|
color: #fff; }
|
|
|
|
|
2016-09-16 03:21:34 +08:00
|
|
|
.link {
|
|
|
|
color: #0066ff !important;
|
|
|
|
cursor: pointer; }
|
|
|
|
|
|
|
|
.link:hover {
|
|
|
|
text-decoration: underline; }
|
|
|
|
|
2016-09-13 06:10:24 +08:00
|
|
|
.tab_header {
|
2016-09-21 02:51:41 +08:00
|
|
|
margin: 44px 0 0;
|
2016-09-13 06:10:24 +08:00
|
|
|
list-style: none;
|
2016-09-21 02:51:41 +08:00
|
|
|
padding: 0; }
|
2016-09-13 06:10:24 +08:00
|
|
|
.tab_header li.tab:first-child {
|
|
|
|
margin-left: 0; }
|
|
|
|
.tab_header li.tab {
|
|
|
|
/*@include border-top-radius(2px);*/
|
|
|
|
float: left;
|
|
|
|
border-bottom-width: 0;
|
|
|
|
margin: 0;
|
|
|
|
padding: 10px 10px 10px 10px;
|
2016-10-01 23:21:24 +08:00
|
|
|
color: #e0dddd;
|
2016-09-13 06:10:24 +08:00
|
|
|
cursor: pointer;
|
|
|
|
border-right: 1px solid #eee;
|
|
|
|
-webkit-transition: background-color 250ms linear;
|
|
|
|
-moz-transition: background-color 250ms linear;
|
|
|
|
-o-transition: background-color 250ms linear;
|
|
|
|
-ms-transition: background-color 250ms linear;
|
|
|
|
transition: background-color 250ms linear; }
|
|
|
|
.tab_header li.active {
|
|
|
|
color: #fff; }
|
|
|
|
|
|
|
|
.tab_container {
|
|
|
|
border: 1px solid;
|
|
|
|
border-color: #eee;
|
|
|
|
border-top-color: #0082c9;
|
|
|
|
border-bottom: 0;
|
|
|
|
clear: both;
|
|
|
|
padding: 0 1em; }
|
|
|
|
|
|
|
|
.pw-gen {
|
|
|
|
overflow: hidden; }
|
|
|
|
.pw-gen input {
|
2016-09-16 20:01:25 +08:00
|
|
|
width: calc(100% - 80px) !important;
|
2016-09-13 06:10:24 +08:00
|
|
|
float: left;
|
|
|
|
background: #fff;
|
|
|
|
color: #555;
|
|
|
|
cursor: text;
|
|
|
|
font-family: inherit;
|
|
|
|
border: 1px solid #ddd;
|
|
|
|
outline: none;
|
|
|
|
border-radius: 3px;
|
|
|
|
margin: 3px 3px 3px 0;
|
|
|
|
padding: 7px 6px 5px;
|
|
|
|
font-size: 13px;
|
|
|
|
-webkit-border-bottom-right-radius: 0;
|
|
|
|
border-bottom-right-radius: 0;
|
|
|
|
-webkit-border-top-right-radius: 0;
|
|
|
|
border-top-right-radius: 0;
|
|
|
|
background-clip: padding-box; }
|
|
|
|
.pw-gen .generate_pw {
|
|
|
|
float: left;
|
|
|
|
margin-top: 3px;
|
|
|
|
margin-left: -3px; }
|
|
|
|
.pw-gen .generate_pw .cell {
|
|
|
|
padding: 5px;
|
|
|
|
display: inline-block;
|
|
|
|
font-size: 14px;
|
|
|
|
border: 1px solid #ddd;
|
|
|
|
background-color: #eaeaea;
|
|
|
|
cursor: pointer; }
|
|
|
|
.pw-gen .generate_pw .cell:hover {
|
|
|
|
color: #0066ff; }
|
|
|
|
.pw-gen .generate_pw .cell:last-child {
|
|
|
|
-webkit-border-bottom-right-radius: 3px;
|
|
|
|
border-bottom-right-radius: 3px;
|
|
|
|
-webkit-border-top-right-radius: 3px;
|
|
|
|
border-top-right-radius: 3px;
|
|
|
|
background-clip: padding-box; }
|
|
|
|
|
2016-10-01 04:31:46 +08:00
|
|
|
.warning_bar {
|
|
|
|
position: absolute;
|
|
|
|
width: 100%;
|
|
|
|
padding: 12px;
|
|
|
|
font-weight: bold;
|
|
|
|
text-align: center;
|
2016-10-02 00:07:44 +08:00
|
|
|
z-index: 800;
|
2016-10-01 04:31:46 +08:00
|
|
|
background-color: red;
|
|
|
|
color: white; }
|
|
|
|
.warning_bar .fa-times {
|
|
|
|
float: right;
|
|
|
|
color: #000;
|
|
|
|
cursor: pointer; }
|
|
|
|
|
2016-09-11 05:30:17 +08:00
|
|
|
.vault_wrapper {
|
|
|
|
margin: 0 auto;
|
|
|
|
margin-top: 20px;
|
|
|
|
width: 100%;
|
|
|
|
max-width: 420px;
|
|
|
|
-webkit-border-radius: 5px;
|
|
|
|
border-radius: 5px;
|
|
|
|
background-clip: padding-box;
|
|
|
|
/* stops bg color from leaking outside the border: */
|
|
|
|
box-shadow: 0 1px 1px #777;
|
|
|
|
background: #eee;
|
|
|
|
display: block; }
|
|
|
|
.vault_wrapper .vaultlist {
|
|
|
|
z-index: 500; }
|
|
|
|
.vault_wrapper .vaultlist li, .vault_wrapper .vaultlist div, .vault_wrapper .vaultlist span, .vault_wrapper .vaultlist small {
|
|
|
|
cursor: pointer; }
|
|
|
|
.vault_wrapper .vaultlist small {
|
|
|
|
color: #8e8e8e; }
|
|
|
|
.vault_wrapper .vaultlist li.selected {
|
|
|
|
background-color: #0082c9 !important;
|
|
|
|
color: #ddd; }
|
|
|
|
.vault_wrapper .vaultlist li {
|
|
|
|
border-bottom: 1px solid #8e8e8e;
|
|
|
|
padding: 16px; }
|
|
|
|
.vault_wrapper .vaultlist li:hover {
|
|
|
|
background-color: #f7f7f7; }
|
|
|
|
.vault_wrapper .login_form {
|
|
|
|
padding: 16px; }
|
2016-09-12 02:47:29 +08:00
|
|
|
.vault_wrapper .login_form .error {
|
|
|
|
color: #ce3702; }
|
2016-09-13 06:10:24 +08:00
|
|
|
.vault_wrapper .login_form .pw-input .last_access {
|
|
|
|
color: #8e8e8e; }
|
2016-09-11 05:30:17 +08:00
|
|
|
.vault_wrapper .login_form input[type="password"], .vault_wrapper .login_form input[type="text"] {
|
|
|
|
width: 100%;
|
|
|
|
-webkit-border-radius: 5px;
|
|
|
|
border-radius: 5px;
|
|
|
|
background-clip: padding-box;
|
|
|
|
/* stops bg color from leaking outside the border: */ }
|
|
|
|
.vault_wrapper .login_form .button_wrapper .button {
|
|
|
|
width: 45%;
|
|
|
|
display: inline-block; }
|
|
|
|
.vault_wrapper .login_form .button {
|
|
|
|
margin-top: 10px; }
|
2016-09-10 20:03:18 +08:00
|
|
|
|
2016-09-12 01:45:20 +08:00
|
|
|
@media screen and (max-width: 768px) {
|
|
|
|
.vault_wrapper {
|
|
|
|
width: 90%; } }
|
2016-09-15 03:12:10 +08:00
|
|
|
#app-content {
|
|
|
|
overflow-x: hidden; }
|
|
|
|
#app-content #app-content-wrapper {
|
|
|
|
min-height: 95%; }
|
2016-09-27 01:15:39 +08:00
|
|
|
#app-content #app-content-wrapper #passman-controls {
|
2016-09-21 02:51:41 +08:00
|
|
|
border-bottom: 1px solid #c9c9c9; }
|
2016-09-27 01:15:39 +08:00
|
|
|
#app-content #app-content-wrapper .title {
|
2016-10-01 23:53:32 +08:00
|
|
|
width: calc(100% - 380px);
|
2016-09-27 01:15:39 +08:00
|
|
|
text-align: center;
|
|
|
|
display: inline-block;
|
|
|
|
font-weight: bold;
|
|
|
|
margin-top: 10px; }
|
2016-09-15 03:12:10 +08:00
|
|
|
#app-content #app-content-wrapper .actions.creatable {
|
2016-09-25 23:55:29 +08:00
|
|
|
float: left;
|
2016-09-21 02:51:41 +08:00
|
|
|
overflow: hidden; }
|
2016-09-15 03:12:10 +08:00
|
|
|
#app-content #app-content-wrapper .actions.creatable .bubble {
|
|
|
|
position: relative;
|
|
|
|
width: 185px;
|
|
|
|
-webkit-border-radius: 5px;
|
|
|
|
border-radius: 5px;
|
|
|
|
background-clip: padding-box;
|
|
|
|
/* stops bg color from leaking outside the border: */
|
|
|
|
box-shadow: 0 1px 10px rgba(50, 50, 50, 0.7); }
|
|
|
|
#app-content #app-content-wrapper .actions.creatable .bubble ul li {
|
|
|
|
padding-left: 10px; }
|
|
|
|
#app-content #app-content-wrapper .actions.creatable .bubble ul .menuitem {
|
2016-09-12 05:40:06 +08:00
|
|
|
font-size: 12px;
|
|
|
|
display: inline; }
|
2016-09-15 03:12:10 +08:00
|
|
|
#app-content #app-content-wrapper .actions.creatable .bubble:after {
|
|
|
|
right: inherit;
|
|
|
|
left: 10px;
|
|
|
|
top: -19px; }
|
2016-09-28 06:14:32 +08:00
|
|
|
#app-content #app-content-wrapper .viewModes {
|
|
|
|
float: right;
|
|
|
|
margin-right: 5px;
|
|
|
|
margin-top: 3px; }
|
|
|
|
#app-content #app-content-wrapper .viewModes .view-mode:first-child {
|
|
|
|
-webkit-border-bottom-left-radius: 5px;
|
|
|
|
border-bottom-left-radius: 5px;
|
|
|
|
-webkit-border-top-left-radius: 5px;
|
|
|
|
border-top-left-radius: 5px;
|
|
|
|
background-clip: padding-box;
|
|
|
|
border: 1px solid rgba(240, 240, 240, 0.9); }
|
|
|
|
#app-content #app-content-wrapper .viewModes .view-mode:last-child {
|
|
|
|
-webkit-border-bottom-right-radius: 5px;
|
|
|
|
border-bottom-right-radius: 5px;
|
|
|
|
-webkit-border-top-right-radius: 5px;
|
|
|
|
border-top-right-radius: 5px;
|
|
|
|
background-clip: padding-box;
|
|
|
|
border: 1px solid rgba(240, 240, 240, 0.9); }
|
|
|
|
#app-content #app-content-wrapper .viewModes .view-mode {
|
|
|
|
display: inline-block;
|
|
|
|
padding: 7px;
|
|
|
|
background-color: rgba(240, 240, 240, 0.9); }
|
|
|
|
#app-content #app-content-wrapper .viewModes .view-mode.active {
|
|
|
|
display: inline-block;
|
|
|
|
padding: 7px;
|
|
|
|
background-color: rgba(226, 226, 226, 0.9); }
|
|
|
|
#app-content #app-content-wrapper .viewModes .view-mode {
|
|
|
|
cursor: pointer;
|
|
|
|
display: inline-block;
|
|
|
|
padding: 7px; }
|
2016-09-25 23:55:29 +08:00
|
|
|
#app-content #app-content-wrapper .searchboxContainer {
|
|
|
|
display: inline-block;
|
|
|
|
margin-right: 14px;
|
|
|
|
float: right; }
|
|
|
|
#app-content #app-content-wrapper .searchboxContainer .searchbox {
|
|
|
|
display: inline-block; }
|
2016-09-15 03:12:10 +08:00
|
|
|
#app-content #app-content-wrapper .credential-table {
|
|
|
|
width: 100%;
|
|
|
|
margin-top: 44px; }
|
|
|
|
#app-content #app-content-wrapper .credential-table tr:hover {
|
|
|
|
background-color: whitesmoke; }
|
|
|
|
#app-content #app-content-wrapper .credential-table tr.selected {
|
|
|
|
background-color: #f8f8f8; }
|
|
|
|
#app-content #app-content-wrapper .credential-table tr td {
|
|
|
|
cursor: pointer;
|
|
|
|
padding: 5px;
|
|
|
|
border-bottom: 1px solid #eeeeee; }
|
2016-09-21 00:49:02 +08:00
|
|
|
#app-content #app-content-wrapper .credential-table tr td .icon {
|
|
|
|
font-size: 19px;
|
|
|
|
float: left;
|
|
|
|
margin-right: 5px;
|
|
|
|
margin-left: 3px; }
|
2016-09-15 03:12:10 +08:00
|
|
|
#app-content #app-content-wrapper .credential-table tr td .icon-more {
|
|
|
|
display: inline-block;
|
|
|
|
float: right;
|
|
|
|
margin-left: 5px;
|
|
|
|
margin-top: 1px;
|
|
|
|
opacity: 0.4;
|
|
|
|
height: 20px;
|
|
|
|
width: 32px;
|
2016-09-14 21:23:08 +08:00
|
|
|
cursor: pointer; }
|
2016-09-15 03:12:10 +08:00
|
|
|
#app-content #app-content-wrapper .credential-table tr td .icon-more:hover {
|
|
|
|
opacity: 1; }
|
|
|
|
#app-content #app-content-wrapper .credential-table tr td .popovermenu {
|
|
|
|
margin-top: 25px;
|
|
|
|
height: 100px;
|
|
|
|
width: 100px;
|
|
|
|
right: -2px !important;
|
|
|
|
box-shadow: 0 1px 10px rgba(50, 50, 50, 0.7); }
|
|
|
|
#app-content #app-content-wrapper .credential-table tr td .popovermenu ul {
|
|
|
|
display: block;
|
|
|
|
width: 100px;
|
|
|
|
height: 75px; }
|
|
|
|
#app-content #app-content-wrapper .credential-table tr td .popovermenu ul li {
|
|
|
|
padding: 0px; }
|
|
|
|
#app-content #app-content-wrapper .credential-table tr td .popovermenu ul .menuitem {
|
|
|
|
font-size: 12px;
|
|
|
|
display: inline; }
|
|
|
|
#app-content #app-content-wrapper .credential-table tr td .popovermenu .action {
|
|
|
|
padding: 10px;
|
|
|
|
margin: -10px; }
|
2016-09-28 06:14:32 +08:00
|
|
|
#app-content #app-content-wrapper .tags {
|
|
|
|
float: right; }
|
|
|
|
#app-content #app-content-wrapper .tags .tag {
|
|
|
|
background-color: rgba(240, 240, 240, 0.9);
|
|
|
|
padding: 4px;
|
|
|
|
font-size: 12px;
|
|
|
|
margin-right: 3px;
|
|
|
|
-webkit-border-radius: 5px;
|
|
|
|
border-radius: 5px;
|
|
|
|
background-clip: padding-box;
|
|
|
|
/* stops bg color from leaking outside the border: */ }
|
|
|
|
#app-content #app-content-wrapper .tags .tag:last-child {
|
|
|
|
margin-right: 8px; }
|
|
|
|
#app-content #app-content-wrapper .grid-view {
|
|
|
|
margin-top: 44px;
|
|
|
|
display: flex;
|
|
|
|
flex-wrap: wrap; }
|
|
|
|
#app-content #app-content-wrapper .grid-view .credential {
|
|
|
|
display: flex;
|
|
|
|
width: 100%;
|
2016-09-28 06:25:21 +08:00
|
|
|
border: 2px solid rgba(240, 240, 240, 0.9);
|
2016-09-28 06:14:32 +08:00
|
|
|
margin: 25px;
|
2016-09-28 06:46:51 +08:00
|
|
|
-webkit-border-radius: 10px;
|
|
|
|
border-radius: 10px;
|
2016-09-28 06:14:32 +08:00
|
|
|
background-clip: padding-box;
|
|
|
|
/* stops bg color from leaking outside the border: */ }
|
|
|
|
#app-content #app-content-wrapper .grid-view .credential .credential_content {
|
|
|
|
display: flex;
|
2016-09-28 06:46:51 +08:00
|
|
|
padding: 2px;
|
2016-09-28 06:14:32 +08:00
|
|
|
flex-direction: column;
|
|
|
|
width: 100%;
|
2016-09-28 06:25:21 +08:00
|
|
|
cursor: pointer;
|
2016-09-28 06:14:32 +08:00
|
|
|
font-size: 1.75em;
|
|
|
|
text-align: center; }
|
|
|
|
#app-content #app-content-wrapper .grid-view .credential .credential_content .label {
|
2016-09-28 06:25:21 +08:00
|
|
|
padding-top: 0.5em;
|
2016-09-28 06:14:32 +08:00
|
|
|
padding-left: 1em;
|
|
|
|
padding-right: 1em;
|
2016-09-28 07:23:57 +08:00
|
|
|
line-height: 1.3em;
|
|
|
|
word-wrap: break-word; }
|
2016-09-28 06:25:21 +08:00
|
|
|
#app-content #app-content-wrapper .grid-view .credential .credential_content .tags {
|
|
|
|
margin-bottom: 0.5em; }
|
|
|
|
#app-content #app-content-wrapper .grid-view .credential .credential_content .tags .tag {
|
2016-09-28 06:46:51 +08:00
|
|
|
color: #000 !important;
|
2016-09-28 06:25:21 +08:00
|
|
|
margin-top: 5px;
|
|
|
|
display: inline-block; }
|
2016-09-28 06:14:32 +08:00
|
|
|
@media all and (min-width: 40em) {
|
|
|
|
#app-content #app-content-wrapper .grid-view .credential {
|
|
|
|
width: 40%; } }
|
|
|
|
@media all and (min-width: 58em) {
|
|
|
|
#app-content #app-content-wrapper .grid-view .credential {
|
|
|
|
width: 26%; } }
|
|
|
|
@media all and (min-width: 78em) {
|
|
|
|
#app-content #app-content-wrapper .grid-view .credential {
|
|
|
|
width: 20%; } }
|
2016-09-21 02:51:41 +08:00
|
|
|
#app-content #app-content-wrapper .edit_credential label {
|
|
|
|
display: block; }
|
|
|
|
#app-content #app-content-wrapper .edit_credential input[type="text"], #app-content #app-content-wrapper .edit_credential input[type="password"] {
|
|
|
|
width: 100%; }
|
|
|
|
#app-content #app-content-wrapper .edit_credential .tags {
|
|
|
|
float: left; }
|
|
|
|
#app-content #app-content-wrapper .edit_credential .tags .tag {
|
|
|
|
background-color: rgba(240, 240, 240, 0.9);
|
|
|
|
padding: 4px;
|
|
|
|
font-size: 11px; }
|
|
|
|
#app-content #app-content-wrapper .edit_credential tags-input .tags {
|
|
|
|
width: 100%; }
|
|
|
|
#app-content #app-content-wrapper .edit_credential .credential_textarea {
|
|
|
|
width: 100%;
|
|
|
|
height: 100px; }
|
|
|
|
#app-content #app-content-wrapper .edit_credential .password_settings label {
|
|
|
|
overflow: hidden; }
|
|
|
|
#app-content #app-content-wrapper .edit_credential .password_settings label input[type="checkbox"] {
|
|
|
|
width: auto !important;
|
2016-09-15 03:12:10 +08:00
|
|
|
float: left; }
|
2016-09-21 02:51:41 +08:00
|
|
|
#app-content #app-content-wrapper .edit_credential .password_settings label .label {
|
|
|
|
float: left; }
|
|
|
|
#app-content #app-content-wrapper .edit_credential .password_settings label .label.sm {
|
|
|
|
font-size: 12px; }
|
|
|
|
#app-content #app-content-wrapper .edit_credential .custom_fields, #app-content #app-content-wrapper .edit_credential .files {
|
|
|
|
margin-top: 10px; }
|
|
|
|
#app-content #app-content-wrapper .edit_credential .custom_fields table, #app-content #app-content-wrapper .edit_credential .files table {
|
2016-09-16 03:21:34 +08:00
|
|
|
width: 100%; }
|
2016-09-21 02:51:41 +08:00
|
|
|
#app-content #app-content-wrapper .edit_credential .custom_fields table thead th, #app-content #app-content-wrapper .edit_credential .files table thead th {
|
|
|
|
color: #fff; }
|
|
|
|
#app-content #app-content-wrapper .edit_credential .custom_fields table thead th.field_actions, #app-content #app-content-wrapper .edit_credential .files table thead th.field_actions {
|
|
|
|
width: 15%; }
|
|
|
|
#app-content #app-content-wrapper .edit_credential .custom_fields table tr:hover, #app-content #app-content-wrapper .edit_credential .files table tr:hover {
|
|
|
|
background-color: transparent; }
|
|
|
|
#app-content #app-content-wrapper .edit_credential .custom_fields table tr td.field_actions, #app-content #app-content-wrapper .edit_credential .files table tr td.field_actions {
|
|
|
|
font-size: 13px;
|
|
|
|
width: 15%; }
|
|
|
|
#app-content #app-content-wrapper .edit_credential .custom_fields table tr td.field_actions i, #app-content #app-content-wrapper .edit_credential .files table tr td.field_actions i {
|
|
|
|
cursor: pointer; }
|
|
|
|
#app-content #app-content-wrapper .edit_credential .custom_fields table tr td, #app-content #app-content-wrapper .edit_credential .custom_fields table tr th, #app-content #app-content-wrapper .edit_credential .files table tr td, #app-content #app-content-wrapper .edit_credential .files table tr th {
|
|
|
|
width: 20%;
|
|
|
|
padding: 5px; }
|
|
|
|
#app-content #app-content-wrapper .edit_credential .custom_fields table tr td .editable-has-buttons.editable-input, #app-content #app-content-wrapper .edit_credential .custom_fields table tr th .editable-has-buttons.editable-input, #app-content #app-content-wrapper .edit_credential .files table tr td .editable-has-buttons.editable-input, #app-content #app-content-wrapper .edit_credential .files table tr th .editable-has-buttons.editable-input {
|
|
|
|
width: 55%; }
|
|
|
|
#app-content #app-content-wrapper .edit_credential .custom_fields table tr td, #app-content #app-content-wrapper .edit_credential .files table tr td {
|
|
|
|
height: 50px;
|
|
|
|
vertical-align: middle; }
|
2016-09-15 05:46:48 +08:00
|
|
|
#app-content #app-content-wrapper .app_sidebar {
|
2016-09-15 04:50:14 +08:00
|
|
|
padding: 10px;
|
2016-09-15 03:12:10 +08:00
|
|
|
overflow-y: auto; }
|
2016-10-07 18:10:06 +08:00
|
|
|
#app-content #app-content-wrapper .app_sidebar h2 {
|
|
|
|
margin-bottom: 10px;
|
|
|
|
font-weight: 400; }
|
2016-09-15 05:46:48 +08:00
|
|
|
#app-content #app-content-wrapper .app_sidebar .close.icon-close {
|
|
|
|
position: absolute;
|
|
|
|
top: 10px;
|
2016-09-24 16:09:17 +08:00
|
|
|
right: 10px;
|
|
|
|
cursor: pointer; }
|
2016-09-15 05:46:48 +08:00
|
|
|
#app-content #app-content-wrapper .app_sidebar.item_selected {
|
2016-09-15 04:50:14 +08:00
|
|
|
height: 25%;
|
2016-09-15 03:12:10 +08:00
|
|
|
display: inline-block; }
|
2016-10-07 18:10:06 +08:00
|
|
|
#app-content #app-content-wrapper .app_sidebar .credential-data .row {
|
|
|
|
margin-bottom: 11px; }
|
|
|
|
#app-content #app-content-wrapper .app_sidebar .credential-data .tags {
|
2016-09-16 20:01:25 +08:00
|
|
|
margin-top: 15px;
|
2016-09-29 06:22:28 +08:00
|
|
|
margin-bottom: 15px;
|
|
|
|
float: none; }
|
2016-10-07 18:10:06 +08:00
|
|
|
#app-content #app-content-wrapper .app_sidebar .credential-data .tags .tag {
|
2016-09-16 20:01:25 +08:00
|
|
|
background-color: rgba(240, 240, 240, 0.9);
|
|
|
|
padding: 4px;
|
|
|
|
margin-right: 3px; }
|
2016-09-15 04:50:14 +08:00
|
|
|
|
|
|
|
.credential_field {
|
|
|
|
overflow: hidden; }
|
|
|
|
.credential_field .cell, .credential_field .value {
|
|
|
|
float: left; }
|
2016-10-07 18:10:06 +08:00
|
|
|
.credential_field .value {
|
|
|
|
white-space: nowrap;
|
|
|
|
overflow: hidden;
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
max-width: 70%; }
|
2016-09-15 04:50:14 +08:00
|
|
|
.credential_field .tools {
|
|
|
|
margin-left: 10px;
|
|
|
|
overflow: hidden;
|
|
|
|
float: left; }
|
|
|
|
.credential_field .tools .cell {
|
|
|
|
cursor: pointer;
|
|
|
|
margin-right: 4px; }
|
2016-09-13 06:10:24 +08:00
|
|
|
|
2016-09-27 00:17:42 +08:00
|
|
|
.progress {
|
|
|
|
margin-top: 10px;
|
2016-10-01 03:43:55 +08:00
|
|
|
height: 20px; }
|
2016-09-27 00:17:42 +08:00
|
|
|
.progress .progress-bar {
|
2016-10-01 03:43:55 +08:00
|
|
|
position: relative;
|
|
|
|
height: 20px;
|
2016-09-27 00:17:42 +08:00
|
|
|
background-image: none;
|
|
|
|
background-color: #0082c9; }
|
2016-10-01 03:43:55 +08:00
|
|
|
.progress .progress-bar .progress-label {
|
|
|
|
position: absolute;
|
|
|
|
top: 0;
|
|
|
|
z-index: 2;
|
|
|
|
text-align: center;
|
|
|
|
width: 100%; }
|
2016-09-27 00:17:42 +08:00
|
|
|
|
2016-09-27 01:15:39 +08:00
|
|
|
.loaderContainer {
|
|
|
|
height: 140px;
|
|
|
|
width: 120px;
|
|
|
|
margin-top: 30px;
|
|
|
|
margin-left: -60px;
|
|
|
|
top: 50%;
|
|
|
|
left: 50%;
|
|
|
|
position: absolute; }
|
|
|
|
|
|
|
|
.loaderContainer .text {
|
|
|
|
width: 120px;
|
|
|
|
text-align: center; }
|
|
|
|
|
|
|
|
.loader {
|
|
|
|
border-bottom: 10px solid #1d2d44;
|
|
|
|
border-left: 10px solid #c9c9c9;
|
|
|
|
border-right: 10px solid #c9c9c9;
|
|
|
|
border-top: 10px solid #c9c9c9;
|
|
|
|
height: 120px;
|
|
|
|
width: 120px;
|
|
|
|
border-radius: 120px;
|
|
|
|
animation: 1.1s linear 0s normal none infinite running load8; }
|
|
|
|
|
|
|
|
@keyframes load8 {
|
|
|
|
0% {
|
|
|
|
transform: rotate(0deg); }
|
|
|
|
100% {
|
|
|
|
transform: rotate(360deg); } }
|
2016-09-12 04:57:55 +08:00
|
|
|
.settings-container div {
|
|
|
|
padding-left: 15px; }
|
|
|
|
|
2016-09-16 20:01:25 +08:00
|
|
|
.nav-trashbin {
|
|
|
|
position: fixed !important;
|
|
|
|
bottom: 44px;
|
|
|
|
width: inherit !important;
|
|
|
|
background-color: #fff;
|
|
|
|
border-right: 1px solid #eee; }
|
|
|
|
.nav-trashbin a {
|
|
|
|
padding: 0 20px; }
|
|
|
|
.nav-trashbin a .fa {
|
|
|
|
margin-right: 15px; }
|
|
|
|
|
|
|
|
#app-navigation li a.taginput {
|
|
|
|
opacity: 1; }
|
|
|
|
#app-navigation li a {
|
|
|
|
overflow: visible; }
|
|
|
|
#app-navigation li a tags-input {
|
|
|
|
opacity: 1.0; }
|
|
|
|
#app-navigation li a tags-input li {
|
|
|
|
width: auto !important; }
|
|
|
|
#app-navigation > ul ul {
|
|
|
|
display: inherit !important; }
|
|
|
|
|
2016-09-23 18:03:37 +08:00
|
|
|
.sharing_table td:first-child {
|
|
|
|
width: 55%; }
|
|
|
|
.sharing_table td:first-child tags-input .tags {
|
|
|
|
width: 100%; }
|
|
|
|
.sharing_table td:first-child .autocomplete {
|
|
|
|
margin-top: 35px; }
|
|
|
|
|
2016-09-21 02:03:37 +08:00
|
|
|
.table {
|
|
|
|
width: 100%; }
|
|
|
|
|
2016-09-25 02:16:57 +08:00
|
|
|
.scan-result-table {
|
|
|
|
margin-top: 10px; }
|
|
|
|
.scan-result-table .score {
|
|
|
|
padding-left: 0px;
|
|
|
|
padding-right: 15px; }
|
|
|
|
|
2016-09-25 22:18:18 +08:00
|
|
|
.import_log {
|
|
|
|
max-height: 600px;
|
|
|
|
overflow-y: auto; }
|
|
|
|
.import_log textarea {
|
|
|
|
width: 90%;
|
|
|
|
height: 200px; }
|
|
|
|
|
2016-09-12 04:57:55 +08:00
|
|
|
#app-settings-content:not(.ng-hide) {
|
|
|
|
height: 60px;
|
|
|
|
display: inherit !important;
|
|
|
|
padding: 0;
|
|
|
|
transition: height 0.15s ease-out; }
|
|
|
|
|
|
|
|
#app-settings-content.ng-hide {
|
|
|
|
display: inherit !important;
|
|
|
|
height: 0;
|
|
|
|
padding: 0;
|
|
|
|
transition: height 0.15s ease-in; }
|
|
|
|
|
2016-09-12 21:32:59 +08:00
|
|
|
.ui-dialog {
|
|
|
|
z-index: 9999; }
|
|
|
|
|
2016-09-13 06:10:24 +08:00
|
|
|
#notification .row {
|
|
|
|
margin-left: 0 !important;
|
|
|
|
margin-right: 0 !important; }
|
|
|
|
|
2016-09-25 23:55:29 +08:00
|
|
|
#app-content #app-content-wrapper #passman-controls {
|
|
|
|
border-bottom: 1px solid #c9c9c9; }
|
|
|
|
|
|
|
|
#passman-controls {
|
|
|
|
box-sizing: border-box;
|
|
|
|
position: fixed;
|
|
|
|
top: 45px;
|
|
|
|
right: 0;
|
|
|
|
left: 0;
|
|
|
|
padding: 0 !important;
|
|
|
|
margin: 0;
|
|
|
|
background-color: rgba(255, 255, 255, 0.95);
|
|
|
|
z-index: 50;
|
|
|
|
-webkit-user-select: none;
|
|
|
|
-moz-user-select: none;
|
|
|
|
-ms-user-select: none;
|
|
|
|
user-select: none;
|
|
|
|
height: 44px !important; }
|
|
|
|
|
2016-09-26 00:19:55 +08:00
|
|
|
@media only screen and (max-width: 768px) {
|
|
|
|
#passman-controls {
|
|
|
|
width: 100%; } }
|
|
|
|
@media only screen and (min-width: 768px) {
|
|
|
|
#app-navigation + #app-content #passman-controls {
|
|
|
|
left: 250px;
|
|
|
|
width: calc( 100% - 250px ) !important; } }
|
2016-09-25 23:55:29 +08:00
|
|
|
#passman-controls .button, #passman-controls, #passman-controls input[type='submit'], #passman-controls input[type='text'], #passman-controls input[type='password'], #passman-controls select {
|
|
|
|
box-sizing: border-box;
|
|
|
|
display: inline-block;
|
|
|
|
height: 36px;
|
|
|
|
padding: 7px 10px; }
|
|
|
|
|
2016-09-10 20:03:18 +08:00
|
|
|
/*# sourceMappingURL=app.css.map */
|