Implement notes field. Fixes #217
This commit is contained in:
Родитель
037b4f2a4c
Коммит
b57c73de33
|
@ -19,6 +19,10 @@
|
|||
"message": "No credentials found",
|
||||
"description": "No credentials found for the current site"
|
||||
},
|
||||
"notes": {
|
||||
"message": "Notes",
|
||||
"description": "No credentials found for the current site"
|
||||
},
|
||||
"invalid_response_from_server": {
|
||||
"message": "Invalid response from server: [$STATUS_CODE$] $STATUS_TEXT$",
|
||||
"description": "No credentials found for the current site",
|
||||
|
|
|
@ -1,539 +0,0 @@
|
|||
/* Header Footer Styles */
|
||||
.radial-progress {
|
||||
display: inline-block;
|
||||
left: 5px;
|
||||
top: 0px;
|
||||
position: relative;
|
||||
width: 10px;
|
||||
height: 10px;
|
||||
background-color: #d6dadc;
|
||||
border-radius: 50%; }
|
||||
.radial-progress .circle .mask, .radial-progress .circle .fill {
|
||||
width: 10px;
|
||||
height: 10px;
|
||||
position: absolute;
|
||||
border-radius: 50%;
|
||||
-webkit-transition: -webkit-transform 0.5s;
|
||||
-moz-transition: -moz-transform 0.5s;
|
||||
transition: transform 0.5s;
|
||||
-webkit-backface-visibility: hidden;
|
||||
backface-visibility: hidden; }
|
||||
.radial-progress .circle .mask {
|
||||
clip: rect(0px, 10px, 10px, 5px); }
|
||||
.radial-progress .circle .mask .fill {
|
||||
clip: rect(0px, 5px, 10px, 0px);
|
||||
background-color: #1565c0; }
|
||||
|
||||
.list {
|
||||
width: 100%; }
|
||||
.list .list-item {
|
||||
position: relative;
|
||||
padding: 12px 15px; }
|
||||
.list .list-item:hover {
|
||||
background-color: #e4e4e4; }
|
||||
.list .list-item .title {
|
||||
font-weight: bold;
|
||||
font-size: 15px; }
|
||||
.list .list-item .info {
|
||||
font-size: 13px; }
|
||||
.list .list-item .extra {
|
||||
font-size: 13px;
|
||||
color: #737373; }
|
||||
.list .list-item .edit {
|
||||
position: absolute;
|
||||
right: 15px;
|
||||
top: 50%;
|
||||
-ms-transform: translateY(-50%);
|
||||
-webkit-transform: translateY(-50%);
|
||||
transform: translateY(-50%);
|
||||
font-size: 25px;
|
||||
color: #737373; }
|
||||
.list .list-item .mdi {
|
||||
cursor: pointer; }
|
||||
.list .list-item.no-hover:hover {
|
||||
background-color: transparent; }
|
||||
|
||||
/**
|
||||
Source: https://codepen.io/sevilayha/pen/IdGKH
|
||||
Edited to work with angular
|
||||
*/
|
||||
/* form starting stylings ------------------------------- */
|
||||
.group {
|
||||
position: relative;
|
||||
margin-bottom: 45px; }
|
||||
|
||||
.group:last-child {
|
||||
margin-bottom: 0; }
|
||||
|
||||
input[type="text"], input[type="password"], select.input-md {
|
||||
font-size: 14px;
|
||||
padding: 10px 10px 10px 5px;
|
||||
display: block;
|
||||
width: 100%;
|
||||
border: none;
|
||||
border-bottom: 1px solid #757575;
|
||||
background: #fff !important; }
|
||||
|
||||
input:focus, select.input-md:focus {
|
||||
outline: none; }
|
||||
|
||||
select.input-md {
|
||||
background-color: #fff;
|
||||
cursor: pointer;
|
||||
margin-top: -3px; }
|
||||
|
||||
/* LABEL ======================================= */
|
||||
.group label {
|
||||
color: #999;
|
||||
font-size: 14px;
|
||||
font-weight: normal;
|
||||
position: absolute;
|
||||
pointer-events: none;
|
||||
left: 5px;
|
||||
top: 10px;
|
||||
transition: 0.2s ease all;
|
||||
-moz-transition: 0.2s ease all;
|
||||
-webkit-transition: 0.2s ease all; }
|
||||
|
||||
/* active state */
|
||||
input[type="text"]:focus ~ label, input[type="password"]:focus ~ label,
|
||||
input[type="text"].ng-valid:not(.ng-empty) ~ label, input[type="password"].ng-valid:not(.ng-empty) ~ label,
|
||||
select.ng-valid:not(.ng-empty) ~ label {
|
||||
top: -20px;
|
||||
font-size: 14px;
|
||||
color: #1565c0; }
|
||||
|
||||
.col33 {
|
||||
width: 29%;
|
||||
float: left; }
|
||||
.col33:first-child {
|
||||
padding-right: 10px; }
|
||||
.col33:not(:first-child) {
|
||||
padding-left: 10px; }
|
||||
|
||||
/* BOTTOM BARS ================================= */
|
||||
.bar {
|
||||
position: relative;
|
||||
display: block;
|
||||
width: 100%; }
|
||||
|
||||
.bar:before, .bar:after {
|
||||
content: '';
|
||||
height: 2px;
|
||||
width: 0;
|
||||
bottom: 1px;
|
||||
position: absolute;
|
||||
background: #1565c0;
|
||||
transition: 0.2s ease all;
|
||||
-moz-transition: 0.2s ease all;
|
||||
-webkit-transition: 0.2s ease all; }
|
||||
|
||||
.bar:before {
|
||||
left: 50%; }
|
||||
|
||||
.bar:after {
|
||||
right: 50%; }
|
||||
|
||||
/* active state */
|
||||
input:focus ~ .bar:before, input:focus ~ .bar:after {
|
||||
width: 50%; }
|
||||
|
||||
/* HIGHLIGHTER ================================== */
|
||||
.highlight {
|
||||
position: absolute;
|
||||
height: 60%;
|
||||
width: 100px;
|
||||
top: 25%;
|
||||
left: 0;
|
||||
pointer-events: none;
|
||||
opacity: 0.5; }
|
||||
|
||||
.group .mdi-content-copy, .pwField .mdi, .group .mdi-delete {
|
||||
/*position: absolute;
|
||||
right: 0;*/
|
||||
margin-top: 5px;
|
||||
float: right;
|
||||
font-size: 15px;
|
||||
cursor: pointer;
|
||||
height: 32px;
|
||||
padding-top: 6px;
|
||||
padding-left: 9px;
|
||||
width: 32px;
|
||||
border-top-left-radius: 16px;
|
||||
border-top-right-radius: 16px;
|
||||
border-bottom-right-radius: 16px;
|
||||
border-top-right-radius: 16px;
|
||||
border-bottom-left-radius: 16px;
|
||||
border-bottom-right-radius: 16px;
|
||||
border-bottom-left-radius: 16px;
|
||||
border-top-left-radius: 16px; }
|
||||
.group .mdi-content-copy:hover, .pwField .mdi:hover, .group .mdi-delete:hover {
|
||||
text-decoration: none;
|
||||
background-color: #e4e4e4; }
|
||||
|
||||
.pwField .mdi-content-copy ~ input {
|
||||
width: calc(100% - 96px); }
|
||||
|
||||
.mdi-content-copy ~ input {
|
||||
width: calc(100% - 32px); }
|
||||
|
||||
.mdi-delete ~ input {
|
||||
width: calc(100% - 32px); }
|
||||
|
||||
.mdi-content-copy ~ .bar {
|
||||
width: calc(100% - 32px); }
|
||||
|
||||
.mdi-delete ~ .bar {
|
||||
width: calc(100% - 32px); }
|
||||
|
||||
/* active state */
|
||||
input:focus ~ .highlight, select.input-md ~ .highlight {
|
||||
-webkit-animation: inputHighlighter 0.3s ease;
|
||||
-moz-animation: inputHighlighter 0.3s ease;
|
||||
animation: inputHighlighter 0.3s ease; }
|
||||
|
||||
/* ANIMATIONS ================ */
|
||||
@-webkit-keyframes inputHighlighter {
|
||||
from {
|
||||
background: #1565c0; }
|
||||
to {
|
||||
width: 0;
|
||||
background: transparent; } }
|
||||
@-moz-keyframes inputHighlighter {
|
||||
from {
|
||||
background: #1565c0; }
|
||||
to {
|
||||
width: 0;
|
||||
background: transparent; } }
|
||||
@keyframes inputHighlighter {
|
||||
from {
|
||||
background: #1565c0; }
|
||||
to {
|
||||
width: 0;
|
||||
background: transparent; } }
|
||||
/**
|
||||
Source: https://codepen.io/guuslieben/pen/YyPRVP
|
||||
*/
|
||||
.switch-input {
|
||||
display: none; }
|
||||
|
||||
.switch-label {
|
||||
position: relative;
|
||||
display: inline-block;
|
||||
min-width: 112px;
|
||||
cursor: pointer;
|
||||
font-weight: 500;
|
||||
text-align: left;
|
||||
padding: 16px 0 16px 44px; }
|
||||
|
||||
.switch-label:before, .switch-label:after {
|
||||
content: "";
|
||||
position: absolute;
|
||||
margin: 0;
|
||||
outline: 0;
|
||||
top: 50%;
|
||||
-ms-transform: translate(0, -50%);
|
||||
-webkit-transform: translate(0, -50%);
|
||||
transform: translate(0, -50%);
|
||||
-webkit-transition: all 0.3s ease;
|
||||
transition: all 0.3s ease; }
|
||||
|
||||
.switch-label:before {
|
||||
left: 1px;
|
||||
width: 34px;
|
||||
height: 14px;
|
||||
background-color: #9E9E9E;
|
||||
border-radius: 8px; }
|
||||
|
||||
.switch-label:after {
|
||||
left: 0;
|
||||
width: 20px;
|
||||
height: 20px;
|
||||
background-color: #FAFAFA;
|
||||
border-radius: 50%;
|
||||
box-shadow: 0 3px 1px -2px rgba(0, 0, 0, 0.14), 0 2px 2px 0 rgba(0, 0, 0, 0.098), 0 1px 5px 0 rgba(0, 0, 0, 0.084); }
|
||||
|
||||
.switch-label .toggle--on {
|
||||
display: none; }
|
||||
|
||||
.switch-label .toggle--off {
|
||||
display: inline-block; }
|
||||
|
||||
.switch-input:checked + .switch-label:before {
|
||||
background-color: #4f98ec; }
|
||||
|
||||
.switch-input:checked + .switch-label:after {
|
||||
background-color: #1565c0;
|
||||
-ms-transform: translate(80%, -50%);
|
||||
-webkit-transform: translate(80%, -50%);
|
||||
transform: translate(80%, -50%); }
|
||||
|
||||
.switch-input:checked + .switch-label .toggle--on {
|
||||
display: inline-block; }
|
||||
|
||||
.switch-input:checked + .switch-label .toggle--off {
|
||||
display: none; }
|
||||
|
||||
/**
|
||||
Source: https://codepen.io/anon/pen/PmEeyo
|
||||
*/
|
||||
.md-checkbox {
|
||||
color: #818181;
|
||||
font-size: 15px;
|
||||
font-weight: bold;
|
||||
font-family: 'Roboto', sans-serif;
|
||||
letter-spacing: .5px; }
|
||||
.md-checkbox .input-checkbox {
|
||||
position: relative;
|
||||
display: inline-block;
|
||||
width: 32px;
|
||||
text-align: center;
|
||||
vertical-align: -9px; }
|
||||
.md-checkbox .input-checkbox input[type="checkbox"] {
|
||||
visibility: hidden;
|
||||
position: absolute;
|
||||
left: 7px;
|
||||
bottom: 7px;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
outline: none;
|
||||
cursor: pointer;
|
||||
opacity: 0; }
|
||||
.md-checkbox .input-checkbox input[type="checkbox"] + .checkbox:before {
|
||||
position: absolute;
|
||||
left: 4px;
|
||||
bottom: 8px;
|
||||
width: 18px;
|
||||
height: 18px;
|
||||
font-family: 'Material Icons';
|
||||
font-weight: normal;
|
||||
font-style: normal;
|
||||
font-size: 24px;
|
||||
line-height: 1;
|
||||
text-transform: none;
|
||||
letter-spacing: normal;
|
||||
word-wrap: normal;
|
||||
white-space: nowrap;
|
||||
direction: ltr;
|
||||
vertical-align: -6px;
|
||||
/* Support for all WebKit browsers. */
|
||||
-webkit-font-smoothing: antialiased;
|
||||
/* Support for Safari and Chrome. */
|
||||
text-rendering: optimizeLegibility;
|
||||
/* Support for Firefox. */
|
||||
-moz-osx-font-smoothing: grayscale;
|
||||
/* Support for IE. */
|
||||
font-feature-settings: 'liga';
|
||||
transition: all .2s ease;
|
||||
z-index: 1; }
|
||||
.md-checkbox .input-checkbox input[type="checkbox"] + .checkbox:before {
|
||||
content: "\e835";
|
||||
color: #717171; }
|
||||
.md-checkbox .input-checkbox input[type="checkbox"]:checked + .checkbox:before {
|
||||
content: "\e834"; }
|
||||
.md-checkbox .input-checkbox input[type="checkbox"]:active:not(:disabled) + .checkbox:before {
|
||||
transform: scale3d(0.88, 0.88, 1); }
|
||||
.md-checkbox .input-checkbox input[type="checkbox"]:disabled + .checkbox:before {
|
||||
color: rgba(0, 0, 0, 0.157) !important; }
|
||||
.md-checkbox.checkbox-light label, .md-checkbox.checkbox-light .label {
|
||||
color: #FFF; }
|
||||
.md-checkbox.checkbox-light input[type="checkbox"] + .checkbox:before {
|
||||
color: #FFF; }
|
||||
.md-checkbox.checkbox-light input[type="checkbox"]:disabled + .checkbox:before {
|
||||
color: #5d5d5d !important; }
|
||||
.md-checkbox.checkbox-light.checkbox-rotate input[type="checkbox"] + .checkbox:before {
|
||||
border-color: #FFF; }
|
||||
.md-checkbox.checkbox-light.checkbox-rotate input[type="checkbox"]:disabled + .checkbox:before {
|
||||
border-color: #5d5d5d !important; }
|
||||
.md-checkbox label, .md-checkbox .label {
|
||||
cursor: pointer;
|
||||
color: #797979; }
|
||||
|
||||
.md-checkbox.checkbox-rotate .input-checkbox input[type="checkbox"] + .checkbox {
|
||||
cursor: pointer; }
|
||||
.md-checkbox.checkbox-rotate .input-checkbox input[type="checkbox"] + .checkbox:before {
|
||||
content: "";
|
||||
position: absolute;
|
||||
left: 7px;
|
||||
bottom: 7px;
|
||||
width: 18px;
|
||||
height: 18px;
|
||||
border: 2px solid #717171;
|
||||
border-radius: 2px;
|
||||
transition: all .2s ease;
|
||||
z-index: 1; }
|
||||
.md-checkbox.checkbox-rotate .input-checkbox input[type="checkbox"]:checked + .checkbox:before {
|
||||
left: 11px;
|
||||
width: 12px;
|
||||
height: 20px;
|
||||
border-width: 2px;
|
||||
border-style: solid;
|
||||
border-top: transparent;
|
||||
border-left: transparent;
|
||||
transform: rotate(40deg);
|
||||
border-radius: 1px; }
|
||||
.md-checkbox.checkbox-rotate .input-checkbox input[type="checkbox"]:disabled + .checkbox:before {
|
||||
border-color: rgba(0, 0, 0, 0.157) !important; }
|
||||
|
||||
.md-checkbox:not(.checkbox-rotate) .checkbox-lightBlue input[type="checkbox"]:checked + .checkbox:before {
|
||||
color: #03a9f4; }
|
||||
|
||||
.md-checkbox.checkbox-rotate .checkbox-lightBlue input[type="checkbox"]:checked + .checkbox:before {
|
||||
border-color: #03a9f4; }
|
||||
|
||||
/**
|
||||
Source: https://codepen.io/sebj54/pen/oxluI
|
||||
*/
|
||||
.md-btn {
|
||||
position: relative;
|
||||
margin: 0 15px 15px 15px;
|
||||
padding: 0;
|
||||
overflow: hidden;
|
||||
border-width: 0;
|
||||
outline: none;
|
||||
border-radius: 2px;
|
||||
box-shadow: 0 1px 4px rgba(0, 0, 0, 0.6);
|
||||
color: #212121;
|
||||
background-color: #fafafa;
|
||||
cursor: pointer;
|
||||
display: inline-block;
|
||||
transition: background-color .3s; }
|
||||
.md-btn.margin5 {
|
||||
margin: 0 5px 5px 5px; }
|
||||
|
||||
.md-btn.default, .btn:focus {
|
||||
background-color: #106cc8;
|
||||
color: rgba(255, 255, 255, 0.87); }
|
||||
|
||||
.md-btn.default:hover, .btn:focus {
|
||||
background-color: #0159a2; }
|
||||
|
||||
.md-btn > * {
|
||||
position: relative; }
|
||||
|
||||
.md-btn span {
|
||||
display: inline-block;
|
||||
padding: 12px 24px; }
|
||||
|
||||
.md-btn:before {
|
||||
content: "";
|
||||
position: absolute;
|
||||
top: 50%;
|
||||
left: 50%;
|
||||
display: block;
|
||||
width: 0;
|
||||
padding-top: 0;
|
||||
border-radius: 100%;
|
||||
background-color: rgba(236, 240, 241, 0.3);
|
||||
-webkit-transform: translate(-50%, -50%);
|
||||
-moz-transform: translate(-50%, -50%);
|
||||
-ms-transform: translate(-50%, -50%);
|
||||
-o-transform: translate(-50%, -50%);
|
||||
transform: translate(-50%, -50%); }
|
||||
|
||||
.md-btn:active:before {
|
||||
width: 120%;
|
||||
padding-top: 120%;
|
||||
transition: width .2s ease-out, padding-top .2s ease-out; }
|
||||
|
||||
.md-btn.orange {
|
||||
background-color: #e67e22; }
|
||||
|
||||
.md-btn.orange:hover, .btn.orange:focus {
|
||||
background-color: #d35400; }
|
||||
|
||||
.md-btn.red {
|
||||
background-color: #ff5722;
|
||||
color: rgba(255, 255, 255, 0.87); }
|
||||
|
||||
.md-btn.red:hover, .btn.red:focus {
|
||||
background-color: #f4511e; }
|
||||
|
||||
.tab-wrap {
|
||||
width: 100%;
|
||||
height: 600px;
|
||||
/*position: absolute;*/ }
|
||||
.tab-wrap label:not(.ng-binding) {
|
||||
cursor: pointer;
|
||||
color: rgba(0, 0, 0, 0.8);
|
||||
background-color: #fff;
|
||||
box-sizing: border-box;
|
||||
display: inline-flex !important;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
text-align: center;
|
||||
height: 56px;
|
||||
transition: color 0.2s ease;
|
||||
width: 100%;
|
||||
border-bottom: 1px solid #c9c9c9; }
|
||||
.tab-wrap .slide {
|
||||
background: #1565c0;
|
||||
width: calc(100% / 2);
|
||||
height: 4px;
|
||||
position: relative;
|
||||
left: 0;
|
||||
top: 52px;
|
||||
transition: left 0.3s ease-out; }
|
||||
.tab-wrap .tab-label-content {
|
||||
width: calc(100% / 2);
|
||||
float: left; }
|
||||
.tab-wrap .tab-label-content .tab-content {
|
||||
position: absolute;
|
||||
top: 100px;
|
||||
left: 16px;
|
||||
line-height: 130%;
|
||||
display: none;
|
||||
width: 100%;
|
||||
padding-right: 20px; }
|
||||
.tab-wrap .tab-label-content .tab-content.active {
|
||||
display: block;
|
||||
margin-top: 40px; }
|
||||
.tab-wrap .tab-label-content .tab-content .custom_field {
|
||||
float: left;
|
||||
margin-bottom: 15px; }
|
||||
.tab-wrap .tab-label-content .tab-content .custom_field .field {
|
||||
float: left;
|
||||
width: 50%; }
|
||||
.tab-wrap .tab-label-content .tab-content .custom_field .field:first-child {
|
||||
padding-right: 10px; }
|
||||
.tab-wrap .tab-label-content .tab-content .custom_field .field:not(:first-child) {
|
||||
padding-left: 10px; }
|
||||
@media screen and (max-width: 800px) {
|
||||
.tab-wrap h1 {
|
||||
padding: 40px 0 90px 10%; }
|
||||
.tab-wrap .tab-wrap {
|
||||
width: 80%;
|
||||
margin-left: 10%;
|
||||
top: -106px; } }
|
||||
|
||||
.slide.right {
|
||||
left: 50%; }
|
||||
|
||||
input[type="radio"][name="tabs"] {
|
||||
position: absolute;
|
||||
z-index: -1; }
|
||||
input[type="radio"][name="tabs"]:checked + .tab-label-content label:not(.ng-binding) {
|
||||
color: rgba(0, 0, 0, 0.8); }
|
||||
input[type="radio"][name="tabs"]:checked + .tab-label-content .tab-content {
|
||||
display: block;
|
||||
margin-top: 40px; }
|
||||
input[type="radio"][name="tabs"]:nth-of-type(1):checked ~ .slide {
|
||||
left: calc((100% / 2) * 0); }
|
||||
input[type="radio"][name="tabs"]:nth-of-type(2):checked ~ .slide {
|
||||
left: calc((100% / 2) * 1); }
|
||||
input[type="radio"][name="tabs"]:first-of-type:checked ~ .slide {
|
||||
left: 0; }
|
||||
|
||||
body {
|
||||
background-color: rgba(0, 0, 0, 0.85);
|
||||
color: #fff;
|
||||
font-family: 'Roboto', sans-serif; }
|
||||
|
||||
.container {
|
||||
display: none;
|
||||
position: absolute;
|
||||
top: 50%;
|
||||
left: 50%;
|
||||
transform: translateX(-50%) translateY(-50%);
|
||||
width: 100%;
|
||||
text-align: center; }
|
Различия файлов скрыты, потому что одна или несколько строк слишком длинны
|
@ -1,788 +0,0 @@
|
|||
/* Header Footer Styles */
|
||||
.radial-progress {
|
||||
display: inline-block;
|
||||
left: 5px;
|
||||
top: 0px;
|
||||
position: relative;
|
||||
width: 10px;
|
||||
height: 10px;
|
||||
background-color: #d6dadc;
|
||||
border-radius: 50%; }
|
||||
.radial-progress .circle .mask, .radial-progress .circle .fill {
|
||||
width: 10px;
|
||||
height: 10px;
|
||||
position: absolute;
|
||||
border-radius: 50%;
|
||||
-webkit-transition: -webkit-transform 0.5s;
|
||||
-moz-transition: -moz-transform 0.5s;
|
||||
transition: transform 0.5s;
|
||||
-webkit-backface-visibility: hidden;
|
||||
backface-visibility: hidden; }
|
||||
.radial-progress .circle .mask {
|
||||
clip: rect(0px, 10px, 10px, 5px); }
|
||||
.radial-progress .circle .mask .fill {
|
||||
clip: rect(0px, 5px, 10px, 0px);
|
||||
background-color: #1565c0; }
|
||||
|
||||
.list {
|
||||
width: 100%; }
|
||||
.list .list-item {
|
||||
position: relative;
|
||||
padding: 12px 15px; }
|
||||
.list .list-item:hover {
|
||||
background-color: #e4e4e4; }
|
||||
.list .list-item .title {
|
||||
font-weight: bold;
|
||||
font-size: 15px; }
|
||||
.list .list-item .info {
|
||||
font-size: 13px; }
|
||||
.list .list-item .extra {
|
||||
font-size: 13px;
|
||||
color: #737373; }
|
||||
.list .list-item .edit {
|
||||
position: absolute;
|
||||
right: 15px;
|
||||
top: 50%;
|
||||
-ms-transform: translateY(-50%);
|
||||
-webkit-transform: translateY(-50%);
|
||||
transform: translateY(-50%);
|
||||
font-size: 25px;
|
||||
color: #737373; }
|
||||
.list .list-item .mdi {
|
||||
cursor: pointer; }
|
||||
.list .list-item.no-hover:hover {
|
||||
background-color: transparent; }
|
||||
|
||||
/**
|
||||
Source: https://codepen.io/sevilayha/pen/IdGKH
|
||||
Edited to work with angular
|
||||
*/
|
||||
/* form starting stylings ------------------------------- */
|
||||
.group {
|
||||
position: relative;
|
||||
margin-bottom: 45px; }
|
||||
|
||||
.group:last-child {
|
||||
margin-bottom: 0; }
|
||||
|
||||
input[type="text"], input[type="password"], select.input-md {
|
||||
font-size: 14px;
|
||||
padding: 10px 10px 10px 5px;
|
||||
display: block;
|
||||
width: 100%;
|
||||
border: none;
|
||||
border-bottom: 1px solid #757575;
|
||||
background: #fff !important; }
|
||||
|
||||
input:focus, select.input-md:focus {
|
||||
outline: none; }
|
||||
|
||||
select.input-md {
|
||||
background-color: #fff;
|
||||
cursor: pointer;
|
||||
margin-top: -3px; }
|
||||
|
||||
/* LABEL ======================================= */
|
||||
.group label {
|
||||
color: #999;
|
||||
font-size: 14px;
|
||||
font-weight: normal;
|
||||
position: absolute;
|
||||
pointer-events: none;
|
||||
left: 5px;
|
||||
top: 10px;
|
||||
transition: 0.2s ease all;
|
||||
-moz-transition: 0.2s ease all;
|
||||
-webkit-transition: 0.2s ease all; }
|
||||
|
||||
/* active state */
|
||||
input[type="text"]:focus ~ label, input[type="password"]:focus ~ label,
|
||||
input[type="text"].ng-valid:not(.ng-empty) ~ label, input[type="password"].ng-valid:not(.ng-empty) ~ label,
|
||||
select.ng-valid:not(.ng-empty) ~ label {
|
||||
top: -20px;
|
||||
font-size: 14px;
|
||||
color: #1565c0; }
|
||||
|
||||
.col33 {
|
||||
width: 29%;
|
||||
float: left; }
|
||||
.col33:first-child {
|
||||
padding-right: 10px; }
|
||||
.col33:not(:first-child) {
|
||||
padding-left: 10px; }
|
||||
|
||||
/* BOTTOM BARS ================================= */
|
||||
.bar {
|
||||
position: relative;
|
||||
display: block;
|
||||
width: 100%; }
|
||||
|
||||
.bar:before, .bar:after {
|
||||
content: '';
|
||||
height: 2px;
|
||||
width: 0;
|
||||
bottom: 1px;
|
||||
position: absolute;
|
||||
background: #1565c0;
|
||||
transition: 0.2s ease all;
|
||||
-moz-transition: 0.2s ease all;
|
||||
-webkit-transition: 0.2s ease all; }
|
||||
|
||||
.bar:before {
|
||||
left: 50%; }
|
||||
|
||||
.bar:after {
|
||||
right: 50%; }
|
||||
|
||||
/* active state */
|
||||
input:focus ~ .bar:before, input:focus ~ .bar:after {
|
||||
width: 50%; }
|
||||
|
||||
/* HIGHLIGHTER ================================== */
|
||||
.highlight {
|
||||
position: absolute;
|
||||
height: 60%;
|
||||
width: 100px;
|
||||
top: 25%;
|
||||
left: 0;
|
||||
pointer-events: none;
|
||||
opacity: 0.5; }
|
||||
|
||||
.group .mdi-content-copy, .pwField .mdi, .group .mdi-delete {
|
||||
/*position: absolute;
|
||||
right: 0;*/
|
||||
margin-top: 5px;
|
||||
float: right;
|
||||
font-size: 15px;
|
||||
cursor: pointer;
|
||||
height: 32px;
|
||||
padding-top: 6px;
|
||||
padding-left: 9px;
|
||||
width: 32px;
|
||||
border-top-left-radius: 16px;
|
||||
border-top-right-radius: 16px;
|
||||
border-bottom-right-radius: 16px;
|
||||
border-top-right-radius: 16px;
|
||||
border-bottom-left-radius: 16px;
|
||||
border-bottom-right-radius: 16px;
|
||||
border-bottom-left-radius: 16px;
|
||||
border-top-left-radius: 16px; }
|
||||
.group .mdi-content-copy:hover, .pwField .mdi:hover, .group .mdi-delete:hover {
|
||||
text-decoration: none;
|
||||
background-color: #e4e4e4; }
|
||||
|
||||
.pwField .mdi-content-copy ~ input {
|
||||
width: calc(100% - 96px); }
|
||||
|
||||
.mdi-content-copy ~ input {
|
||||
width: calc(100% - 32px); }
|
||||
|
||||
.mdi-delete ~ input {
|
||||
width: calc(100% - 32px); }
|
||||
|
||||
.mdi-content-copy ~ .bar {
|
||||
width: calc(100% - 32px); }
|
||||
|
||||
.mdi-delete ~ .bar {
|
||||
width: calc(100% - 32px); }
|
||||
|
||||
/* active state */
|
||||
input:focus ~ .highlight, select.input-md ~ .highlight {
|
||||
-webkit-animation: inputHighlighter 0.3s ease;
|
||||
-moz-animation: inputHighlighter 0.3s ease;
|
||||
animation: inputHighlighter 0.3s ease; }
|
||||
|
||||
/* ANIMATIONS ================ */
|
||||
@-webkit-keyframes inputHighlighter {
|
||||
from {
|
||||
background: #1565c0; }
|
||||
to {
|
||||
width: 0;
|
||||
background: transparent; } }
|
||||
@-moz-keyframes inputHighlighter {
|
||||
from {
|
||||
background: #1565c0; }
|
||||
to {
|
||||
width: 0;
|
||||
background: transparent; } }
|
||||
@keyframes inputHighlighter {
|
||||
from {
|
||||
background: #1565c0; }
|
||||
to {
|
||||
width: 0;
|
||||
background: transparent; } }
|
||||
/**
|
||||
Source: https://codepen.io/guuslieben/pen/YyPRVP
|
||||
*/
|
||||
.switch-input {
|
||||
display: none; }
|
||||
|
||||
.switch-label {
|
||||
position: relative;
|
||||
display: inline-block;
|
||||
min-width: 112px;
|
||||
cursor: pointer;
|
||||
font-weight: 500;
|
||||
text-align: left;
|
||||
padding: 16px 0 16px 44px; }
|
||||
|
||||
.switch-label:before, .switch-label:after {
|
||||
content: "";
|
||||
position: absolute;
|
||||
margin: 0;
|
||||
outline: 0;
|
||||
top: 50%;
|
||||
-ms-transform: translate(0, -50%);
|
||||
-webkit-transform: translate(0, -50%);
|
||||
transform: translate(0, -50%);
|
||||
-webkit-transition: all 0.3s ease;
|
||||
transition: all 0.3s ease; }
|
||||
|
||||
.switch-label:before {
|
||||
left: 1px;
|
||||
width: 34px;
|
||||
height: 14px;
|
||||
background-color: #9E9E9E;
|
||||
border-radius: 8px; }
|
||||
|
||||
.switch-label:after {
|
||||
left: 0;
|
||||
width: 20px;
|
||||
height: 20px;
|
||||
background-color: #FAFAFA;
|
||||
border-radius: 50%;
|
||||
box-shadow: 0 3px 1px -2px rgba(0, 0, 0, 0.14), 0 2px 2px 0 rgba(0, 0, 0, 0.098), 0 1px 5px 0 rgba(0, 0, 0, 0.084); }
|
||||
|
||||
.switch-label .toggle--on {
|
||||
display: none; }
|
||||
|
||||
.switch-label .toggle--off {
|
||||
display: inline-block; }
|
||||
|
||||
.switch-input:checked + .switch-label:before {
|
||||
background-color: #4f98ec; }
|
||||
|
||||
.switch-input:checked + .switch-label:after {
|
||||
background-color: #1565c0;
|
||||
-ms-transform: translate(80%, -50%);
|
||||
-webkit-transform: translate(80%, -50%);
|
||||
transform: translate(80%, -50%); }
|
||||
|
||||
.switch-input:checked + .switch-label .toggle--on {
|
||||
display: inline-block; }
|
||||
|
||||
.switch-input:checked + .switch-label .toggle--off {
|
||||
display: none; }
|
||||
|
||||
/**
|
||||
Source: https://codepen.io/anon/pen/PmEeyo
|
||||
*/
|
||||
.md-checkbox {
|
||||
color: #818181;
|
||||
font-size: 15px;
|
||||
font-weight: bold;
|
||||
font-family: 'Roboto', sans-serif;
|
||||
letter-spacing: .5px; }
|
||||
.md-checkbox .input-checkbox {
|
||||
position: relative;
|
||||
display: inline-block;
|
||||
width: 32px;
|
||||
text-align: center;
|
||||
vertical-align: -9px; }
|
||||
.md-checkbox .input-checkbox input[type="checkbox"] {
|
||||
visibility: hidden;
|
||||
position: absolute;
|
||||
left: 7px;
|
||||
bottom: 7px;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
outline: none;
|
||||
cursor: pointer;
|
||||
opacity: 0; }
|
||||
.md-checkbox .input-checkbox input[type="checkbox"] + .checkbox:before {
|
||||
position: absolute;
|
||||
left: 4px;
|
||||
bottom: 8px;
|
||||
width: 18px;
|
||||
height: 18px;
|
||||
font-family: 'Material Icons';
|
||||
font-weight: normal;
|
||||
font-style: normal;
|
||||
font-size: 24px;
|
||||
line-height: 1;
|
||||
text-transform: none;
|
||||
letter-spacing: normal;
|
||||
word-wrap: normal;
|
||||
white-space: nowrap;
|
||||
direction: ltr;
|
||||
vertical-align: -6px;
|
||||
/* Support for all WebKit browsers. */
|
||||
-webkit-font-smoothing: antialiased;
|
||||
/* Support for Safari and Chrome. */
|
||||
text-rendering: optimizeLegibility;
|
||||
/* Support for Firefox. */
|
||||
-moz-osx-font-smoothing: grayscale;
|
||||
/* Support for IE. */
|
||||
font-feature-settings: 'liga';
|
||||
transition: all .2s ease;
|
||||
z-index: 1; }
|
||||
.md-checkbox .input-checkbox input[type="checkbox"] + .checkbox:before {
|
||||
content: "\e835";
|
||||
color: #717171; }
|
||||
.md-checkbox .input-checkbox input[type="checkbox"]:checked + .checkbox:before {
|
||||
content: "\e834"; }
|
||||
.md-checkbox .input-checkbox input[type="checkbox"]:active:not(:disabled) + .checkbox:before {
|
||||
transform: scale3d(0.88, 0.88, 1); }
|
||||
.md-checkbox .input-checkbox input[type="checkbox"]:disabled + .checkbox:before {
|
||||
color: rgba(0, 0, 0, 0.157) !important; }
|
||||
.md-checkbox.checkbox-light label, .md-checkbox.checkbox-light .label {
|
||||
color: #FFF; }
|
||||
.md-checkbox.checkbox-light input[type="checkbox"] + .checkbox:before {
|
||||
color: #FFF; }
|
||||
.md-checkbox.checkbox-light input[type="checkbox"]:disabled + .checkbox:before {
|
||||
color: #5d5d5d !important; }
|
||||
.md-checkbox.checkbox-light.checkbox-rotate input[type="checkbox"] + .checkbox:before {
|
||||
border-color: #FFF; }
|
||||
.md-checkbox.checkbox-light.checkbox-rotate input[type="checkbox"]:disabled + .checkbox:before {
|
||||
border-color: #5d5d5d !important; }
|
||||
.md-checkbox label, .md-checkbox .label {
|
||||
cursor: pointer;
|
||||
color: #797979; }
|
||||
|
||||
.md-checkbox.checkbox-rotate .input-checkbox input[type="checkbox"] + .checkbox {
|
||||
cursor: pointer; }
|
||||
.md-checkbox.checkbox-rotate .input-checkbox input[type="checkbox"] + .checkbox:before {
|
||||
content: "";
|
||||
position: absolute;
|
||||
left: 7px;
|
||||
bottom: 7px;
|
||||
width: 18px;
|
||||
height: 18px;
|
||||
border: 2px solid #717171;
|
||||
border-radius: 2px;
|
||||
transition: all .2s ease;
|
||||
z-index: 1; }
|
||||
.md-checkbox.checkbox-rotate .input-checkbox input[type="checkbox"]:checked + .checkbox:before {
|
||||
left: 11px;
|
||||
width: 12px;
|
||||
height: 20px;
|
||||
border-width: 2px;
|
||||
border-style: solid;
|
||||
border-top: transparent;
|
||||
border-left: transparent;
|
||||
transform: rotate(40deg);
|
||||
border-radius: 1px; }
|
||||
.md-checkbox.checkbox-rotate .input-checkbox input[type="checkbox"]:disabled + .checkbox:before {
|
||||
border-color: rgba(0, 0, 0, 0.157) !important; }
|
||||
|
||||
.md-checkbox:not(.checkbox-rotate) .checkbox-lightBlue input[type="checkbox"]:checked + .checkbox:before {
|
||||
color: #03a9f4; }
|
||||
|
||||
.md-checkbox.checkbox-rotate .checkbox-lightBlue input[type="checkbox"]:checked + .checkbox:before {
|
||||
border-color: #03a9f4; }
|
||||
|
||||
/**
|
||||
Source: https://codepen.io/sebj54/pen/oxluI
|
||||
*/
|
||||
.md-btn {
|
||||
position: relative;
|
||||
margin: 0 15px 15px 15px;
|
||||
padding: 0;
|
||||
overflow: hidden;
|
||||
border-width: 0;
|
||||
outline: none;
|
||||
border-radius: 2px;
|
||||
box-shadow: 0 1px 4px rgba(0, 0, 0, 0.6);
|
||||
color: #212121;
|
||||
background-color: #fafafa;
|
||||
cursor: pointer;
|
||||
display: inline-block;
|
||||
transition: background-color .3s; }
|
||||
.md-btn.margin5 {
|
||||
margin: 0 5px 5px 5px; }
|
||||
|
||||
.md-btn.default, .btn:focus {
|
||||
background-color: #106cc8;
|
||||
color: rgba(255, 255, 255, 0.87); }
|
||||
|
||||
.md-btn.default:hover, .btn:focus {
|
||||
background-color: #0159a2; }
|
||||
|
||||
.md-btn > * {
|
||||
position: relative; }
|
||||
|
||||
.md-btn span {
|
||||
display: inline-block;
|
||||
padding: 12px 24px; }
|
||||
|
||||
.md-btn:before {
|
||||
content: "";
|
||||
position: absolute;
|
||||
top: 50%;
|
||||
left: 50%;
|
||||
display: block;
|
||||
width: 0;
|
||||
padding-top: 0;
|
||||
border-radius: 100%;
|
||||
background-color: rgba(236, 240, 241, 0.3);
|
||||
-webkit-transform: translate(-50%, -50%);
|
||||
-moz-transform: translate(-50%, -50%);
|
||||
-ms-transform: translate(-50%, -50%);
|
||||
-o-transform: translate(-50%, -50%);
|
||||
transform: translate(-50%, -50%); }
|
||||
|
||||
.md-btn:active:before {
|
||||
width: 120%;
|
||||
padding-top: 120%;
|
||||
transition: width .2s ease-out, padding-top .2s ease-out; }
|
||||
|
||||
.md-btn.orange {
|
||||
background-color: #e67e22; }
|
||||
|
||||
.md-btn.orange:hover, .btn.orange:focus {
|
||||
background-color: #d35400; }
|
||||
|
||||
.md-btn.red {
|
||||
background-color: #ff5722;
|
||||
color: rgba(255, 255, 255, 0.87); }
|
||||
|
||||
.md-btn.red:hover, .btn.red:focus {
|
||||
background-color: #f4511e; }
|
||||
|
||||
.tab-wrap {
|
||||
width: 100%;
|
||||
height: 600px;
|
||||
/*position: absolute;*/ }
|
||||
.tab-wrap label:not(.ng-binding) {
|
||||
cursor: pointer;
|
||||
color: rgba(0, 0, 0, 0.8);
|
||||
background-color: #fff;
|
||||
box-sizing: border-box;
|
||||
display: inline-flex !important;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
text-align: center;
|
||||
height: 56px;
|
||||
transition: color 0.2s ease;
|
||||
width: 100%;
|
||||
border-bottom: 1px solid #c9c9c9; }
|
||||
.tab-wrap .slide {
|
||||
background: #1565c0;
|
||||
width: calc(100% / 2);
|
||||
height: 4px;
|
||||
position: relative;
|
||||
left: 0;
|
||||
top: 52px;
|
||||
transition: left 0.3s ease-out; }
|
||||
.tab-wrap .tab-label-content {
|
||||
width: calc(100% / 2);
|
||||
float: left; }
|
||||
.tab-wrap .tab-label-content .tab-content {
|
||||
position: absolute;
|
||||
top: 100px;
|
||||
left: 16px;
|
||||
line-height: 130%;
|
||||
display: none;
|
||||
width: 100%;
|
||||
padding-right: 20px; }
|
||||
.tab-wrap .tab-label-content .tab-content.active {
|
||||
display: block;
|
||||
margin-top: 40px; }
|
||||
.tab-wrap .tab-label-content .tab-content .custom_field {
|
||||
float: left;
|
||||
margin-bottom: 15px; }
|
||||
.tab-wrap .tab-label-content .tab-content .custom_field .field {
|
||||
float: left;
|
||||
width: 50%; }
|
||||
.tab-wrap .tab-label-content .tab-content .custom_field .field:first-child {
|
||||
padding-right: 10px; }
|
||||
.tab-wrap .tab-label-content .tab-content .custom_field .field:not(:first-child) {
|
||||
padding-left: 10px; }
|
||||
@media screen and (max-width: 800px) {
|
||||
.tab-wrap h1 {
|
||||
padding: 40px 0 90px 10%; }
|
||||
.tab-wrap .tab-wrap {
|
||||
width: 80%;
|
||||
margin-left: 10%;
|
||||
top: -106px; } }
|
||||
|
||||
.slide.right {
|
||||
left: 50%; }
|
||||
|
||||
input[type="radio"][name="tabs"] {
|
||||
position: absolute;
|
||||
z-index: -1; }
|
||||
input[type="radio"][name="tabs"]:checked + .tab-label-content label:not(.ng-binding) {
|
||||
color: rgba(0, 0, 0, 0.8); }
|
||||
input[type="radio"][name="tabs"]:checked + .tab-label-content .tab-content {
|
||||
display: block;
|
||||
margin-top: 40px; }
|
||||
input[type="radio"][name="tabs"]:nth-of-type(1):checked ~ .slide {
|
||||
left: calc((100% / 2) * 0); }
|
||||
input[type="radio"][name="tabs"]:nth-of-type(2):checked ~ .slide {
|
||||
left: calc((100% / 2) * 1); }
|
||||
input[type="radio"][name="tabs"]:first-of-type:checked ~ .slide {
|
||||
left: 0; }
|
||||
|
||||
body {
|
||||
width: 450px;
|
||||
min-height: 350px;
|
||||
font-family: 'Roboto', sans-serif;
|
||||
overflow-x: hidden; }
|
||||
body.setup {
|
||||
width: 100%; }
|
||||
|
||||
header {
|
||||
width: 100%;
|
||||
height: 50px;
|
||||
background: #1565c0;
|
||||
position: fixed;
|
||||
top: 0;
|
||||
z-index: 100;
|
||||
-webkit-transition: all 0.250s ease;
|
||||
-moz-transition: all 0.250s ease;
|
||||
-o-transition: all 0.250s ease;
|
||||
transition: all 0.250s ease; }
|
||||
|
||||
body.toggled {
|
||||
overflow-x: hidden; }
|
||||
|
||||
/* Toggle Styles */
|
||||
#wrapper {
|
||||
padding-left: 0;
|
||||
-webkit-transition: all 0.250s ease;
|
||||
-moz-transition: all 0.250s ease;
|
||||
-o-transition: all 0.250s ease;
|
||||
transition: all 0.250s ease; }
|
||||
|
||||
#sidebar-wrapper {
|
||||
z-index: 1000;
|
||||
position: fixed;
|
||||
left: 250px;
|
||||
width: 0;
|
||||
height: 100%;
|
||||
margin-left: -250px;
|
||||
overflow: hidden;
|
||||
background: #fff;
|
||||
-webkit-transition: all 0.250s ease;
|
||||
-moz-transition: all 0.250s ease;
|
||||
-o-transition: all 0.250s ease;
|
||||
transition: all 0.250s ease;
|
||||
border-right: 1px solid #c9c9c9; }
|
||||
|
||||
#wrapper.toggled #sidebar-wrapper {
|
||||
width: 250px;
|
||||
overflow-x: hidden; }
|
||||
|
||||
#page-content-wrapper {
|
||||
width: 100%;
|
||||
/*position: absolute;*/
|
||||
padding-top: 50px;
|
||||
overflow-y: auto; }
|
||||
|
||||
#wrapper.toggled #page-content-wrapper {
|
||||
/*position: absolute;*/
|
||||
margin-right: -250px;
|
||||
/* width: calc(100% - 250px);*/ }
|
||||
|
||||
.ng-hide {
|
||||
display: none; }
|
||||
|
||||
/* Sidebar Styles */
|
||||
.sidebar-nav {
|
||||
position: absolute;
|
||||
top: 0;
|
||||
width: 250px;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
list-style: none;
|
||||
height: 100%; }
|
||||
.sidebar-nav li {
|
||||
line-height: 55px; }
|
||||
.sidebar-nav li a {
|
||||
cursor: pointer;
|
||||
display: block;
|
||||
text-decoration: none;
|
||||
color: #000; }
|
||||
.sidebar-nav li a .mdi {
|
||||
padding-left: 15px;
|
||||
padding-right: 15px;
|
||||
color: #737373;
|
||||
cursor: pointer; }
|
||||
.sidebar-nav li a:hover {
|
||||
text-decoration: none;
|
||||
background-color: #e4e4e4; }
|
||||
.sidebar-nav li a:active, .sidebar-nav li a:focus {
|
||||
text-decoration: none; }
|
||||
.sidebar-nav li.bottom {
|
||||
position: absolute;
|
||||
bottom: 0;
|
||||
font-size: 12px;
|
||||
text-align: center;
|
||||
width: 100%;
|
||||
margin-bottom: 15px;
|
||||
line-height: 0; }
|
||||
.sidebar-nav > .sidebar-brand {
|
||||
height: 50px;
|
||||
font-size: 18px;
|
||||
line-height: 50px;
|
||||
text-align: center;
|
||||
background-color: #1565c0;
|
||||
border-right: 1px solid #104d92; }
|
||||
.sidebar-nav > .sidebar-brand span {
|
||||
display: block;
|
||||
text-decoration: none;
|
||||
color: #fff; }
|
||||
.sidebar-nav > .sidebar-brand span img {
|
||||
height: 32px;
|
||||
margin-right: 10px; }
|
||||
.sidebar-nav > .sidebar-brand span:hover {
|
||||
color: #fff;
|
||||
background: none; }
|
||||
.sidebar-nav > .sidebar-brand span .mdi {
|
||||
padding-left: 15px;
|
||||
padding-right: 15px;
|
||||
float: right;
|
||||
color: #fff;
|
||||
cursor: pointer; }
|
||||
|
||||
.menuToggler {
|
||||
position: fixed;
|
||||
background-color: rgba(0, 0, 0, 0.6);
|
||||
width: calc(100% - 250px);
|
||||
height: 100%;
|
||||
z-index: 9999999;
|
||||
right: 0;
|
||||
top: 0; }
|
||||
|
||||
.edit_credential {
|
||||
padding-top: 30px;
|
||||
padding-left: 15px;
|
||||
padding-right: 15px; }
|
||||
|
||||
.menu-icon {
|
||||
padding: 8px 15px;
|
||||
font-size: 24px;
|
||||
float: left;
|
||||
color: #fff;
|
||||
cursor: pointer; }
|
||||
|
||||
label, .switch-label, label:not(.input-checkbox):not(.label) {
|
||||
font-weight: normal; }
|
||||
|
||||
.ignored_sites {
|
||||
padding: 0; }
|
||||
.ignored_sites label {
|
||||
font-size: 14px;
|
||||
color: #1565c0; }
|
||||
.ignored_sites li {
|
||||
list-style-type: none;
|
||||
height: 25px;
|
||||
padding: 5px 0; }
|
||||
.ignored_sites li .site {
|
||||
white-space: nowrap;
|
||||
overflow: hidden;
|
||||
text-overflow: ellipsis;
|
||||
display: inline-block;
|
||||
max-width: calc( 100% - 20px); }
|
||||
.ignored_sites li .mdi {
|
||||
margin-top: 2px;
|
||||
cursor: pointer; }
|
||||
.ignored_sites li .mdi:hover {
|
||||
color: #a94442; }
|
||||
.ignored_sites .group {
|
||||
margin-bottom: 45px; }
|
||||
|
||||
.invisible {
|
||||
visibility: hidden; }
|
||||
|
||||
.master_pw_warning {
|
||||
padding-left: 6px;
|
||||
font-size: 10px;
|
||||
color: #a94442;
|
||||
margin-bottom: 15px; }
|
||||
|
||||
.master_pw_warning.big {
|
||||
font-size: 14px;
|
||||
text-align: center; }
|
||||
|
||||
.unlock {
|
||||
width: 350px;
|
||||
box-shadow: 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23);
|
||||
margin: -20px auto 10px;
|
||||
padding: 20px; }
|
||||
.unlock .group {
|
||||
margin-bottom: 25px; }
|
||||
.unlock img {
|
||||
height: 50px;
|
||||
margin: 15px auto;
|
||||
display: block; }
|
||||
.unlock .md-checkbox {
|
||||
margin: 15px 0; }
|
||||
.unlock .md-btn {
|
||||
margin: 5px auto;
|
||||
display: block; }
|
||||
|
||||
.setup {
|
||||
width: 420px;
|
||||
margin: 0 auto;
|
||||
padding: 15px; }
|
||||
.setup h3 {
|
||||
margin-bottom: 35px;
|
||||
padding-left: 5px; }
|
||||
|
||||
#tab1-content {
|
||||
border-right: 1px solid #333333; }
|
||||
|
||||
.tab-wrap .tab-label-content label.tab-title {
|
||||
padding: 16px 90px;
|
||||
margin-bottom: 0; }
|
||||
|
||||
.tab-wrap .tab-label-content.account .tab-content.active {
|
||||
margin-top: 10px; }
|
||||
|
||||
.btn-floating {
|
||||
display: inline-block;
|
||||
color: #fff;
|
||||
position: relative;
|
||||
overflow: hidden;
|
||||
z-index: 1;
|
||||
width: 40px;
|
||||
height: 40px;
|
||||
line-height: 40px;
|
||||
padding: 0;
|
||||
background-color: #1565c0;
|
||||
border-radius: 50%;
|
||||
transition: .3s;
|
||||
cursor: pointer;
|
||||
vertical-align: middle; }
|
||||
|
||||
.btn, .btn-large {
|
||||
text-decoration: none;
|
||||
color: #fff;
|
||||
background-color: #1565c0;
|
||||
text-align: center;
|
||||
letter-spacing: .5px;
|
||||
transition: .2s ease-out;
|
||||
cursor: pointer;
|
||||
font-size: 2rem;
|
||||
width: 56px;
|
||||
height: 56px;
|
||||
line-height: 54px; }
|
||||
|
||||
.btn:hover, .btn-large:hover {
|
||||
background-color: #4f98ec; }
|
||||
|
||||
.fab {
|
||||
position: fixed;
|
||||
bottom: 20px;
|
||||
right: 20px; }
|
||||
|
||||
.red {
|
||||
background-color: #F44336 !important; }
|
||||
|
||||
.cg-notify-message-center {
|
||||
left: 112px !important; }
|
||||
|
||||
.version {
|
||||
padding-bottom: 10px; }
|
Различия файлов скрыты, потому что одна или несколько строк слишком длинны
|
@ -1,5 +0,0 @@
|
|||
#password-toolbarIframe {
|
||||
position: fixed;
|
||||
z-index: 99999;
|
||||
top: 0;
|
||||
left: 0; }
|
|
@ -0,0 +1,9 @@
|
|||
{
|
||||
"version": 3,
|
||||
"file": "doorhanger-iframe.css",
|
||||
"sources": [
|
||||
"../style/doorhanger-iframe.scss"
|
||||
],
|
||||
"names": [],
|
||||
"mappings": "AAAA,AAAA,uBAAuB,CAAA;EACrB,QAAQ,EAAE,KAAK;EACf,OAAO,EAAE,KAAK;EACd,GAAG,EAAE,CAAC;EACN,IAAI,EAAE,CAAC,GACR"
|
||||
}
|
|
@ -1,95 +0,0 @@
|
|||
body {
|
||||
padding: 0;
|
||||
margin: 0;
|
||||
font-family: 'Open Sans', Frutiger, Calibri, 'Myriad Pro', Myriad, sans-serif !important; }
|
||||
|
||||
#password-toolbar {
|
||||
background-color: #fff;
|
||||
border-bottom: 1px;
|
||||
border-left: 1px;
|
||||
border-right: 1px;
|
||||
height: 41px;
|
||||
font-size: 14px;
|
||||
line-height: 30px;
|
||||
border-bottom: 1px solid #c9c9c9; }
|
||||
#password-toolbar .toolbar-text {
|
||||
float: left;
|
||||
display: inline-block;
|
||||
margin-top: 5px;
|
||||
padding-left: 10px;
|
||||
width: calc(100% - 500px);
|
||||
white-space: nowrap;
|
||||
overflow: hidden;
|
||||
text-overflow: ellipsis; }
|
||||
#password-toolbar .passman-btn {
|
||||
outline: none;
|
||||
float: right;
|
||||
display: inline-block;
|
||||
padding: 0 12px;
|
||||
line-height: 41px;
|
||||
margin-bottom: 0;
|
||||
font-size: 14px;
|
||||
font-weight: normal;
|
||||
text-align: center;
|
||||
white-space: nowrap;
|
||||
vertical-align: middle;
|
||||
-ms-touch-action: manipulation;
|
||||
touch-action: manipulation;
|
||||
cursor: pointer;
|
||||
-webkit-user-select: none;
|
||||
-moz-user-select: none;
|
||||
-ms-user-select: none;
|
||||
user-select: none;
|
||||
background-image: none;
|
||||
background-color: #fff;
|
||||
color: #000;
|
||||
/*margin-right: 15px;*/
|
||||
border: 0px solid transparent; }
|
||||
#password-toolbar .passman-btn:hover {
|
||||
background-color: #c9c9c9; }
|
||||
#password-toolbar .passman-btn.btn-success {
|
||||
background: #3498db;
|
||||
color: #fff; }
|
||||
#password-toolbar .passman-btn.btn-cancel {
|
||||
color: #a8353c; }
|
||||
#password-toolbar .passman-btn.btn-save .btn-txt {
|
||||
padding-right: 5px; }
|
||||
#password-toolbar .passman-btn .caret-container {
|
||||
height: 100%;
|
||||
display: inline-block;
|
||||
padding: 0 5px;
|
||||
width: 50%;
|
||||
background-color: white;
|
||||
color: #000; }
|
||||
#password-toolbar .passman-btn .caret-container:hover {
|
||||
background-color: #c9c9c9; }
|
||||
#password-toolbar .passman-btn .caret-container > .caret-container-txt {
|
||||
border-bottom: 1px dashed #fff; }
|
||||
#password-toolbar .select_account {
|
||||
position: absolute;
|
||||
top: 45px;
|
||||
color: #333;
|
||||
width: 160px;
|
||||
right: 93px;
|
||||
white-space: nowrap;
|
||||
overflow: hidden;
|
||||
text-overflow: ellipsis;
|
||||
background-color: #fff;
|
||||
border: 1px solid #ccc;
|
||||
border: 1px solid rgba(0, 0, 0, 0.15);
|
||||
-webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
|
||||
box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
|
||||
padding: 5px 0; }
|
||||
#password-toolbar .select_account .account {
|
||||
display: block;
|
||||
padding: 3px 5px 3px 10px;
|
||||
clear: both;
|
||||
font-weight: 400;
|
||||
line-height: 1.42857143;
|
||||
color: #333;
|
||||
white-space: nowrap;
|
||||
text-align: left; }
|
||||
#password-toolbar .select_account .account:hover {
|
||||
color: #262626;
|
||||
text-decoration: none;
|
||||
background-color: #f5f5f5; }
|
|
@ -0,0 +1,87 @@
|
|||
{
|
||||
"version": 3,
|
||||
"file": "doorhanger.css",
|
||||
"sources": [
|
||||
"../style/doorhanger.scss",
|
||||
"../style/bourbon/_bourbon.scss",
|
||||
"../style/bourbon/settings/_prefixer.scss",
|
||||
"../style/bourbon/settings/_px-to-em.scss",
|
||||
"../style/bourbon/settings/_asset-pipeline.scss",
|
||||
"../style/bourbon/functions/_assign-inputs.scss",
|
||||
"../style/bourbon/functions/_contains.scss",
|
||||
"../style/bourbon/functions/_contains-falsy.scss",
|
||||
"../style/bourbon/functions/_is-length.scss",
|
||||
"../style/bourbon/functions/_is-light.scss",
|
||||
"../style/bourbon/functions/_is-number.scss",
|
||||
"../style/bourbon/functions/_is-size.scss",
|
||||
"../style/bourbon/functions/_px-to-em.scss",
|
||||
"../style/bourbon/functions/_px-to-rem.scss",
|
||||
"../style/bourbon/functions/_shade.scss",
|
||||
"../style/bourbon/functions/_strip-units.scss",
|
||||
"../style/bourbon/functions/_tint.scss",
|
||||
"../style/bourbon/functions/_transition-property-name.scss",
|
||||
"../style/bourbon/functions/_unpack.scss",
|
||||
"../style/bourbon/functions/_modular-scale.scss",
|
||||
"../style/bourbon/helpers/_convert-units.scss",
|
||||
"../style/bourbon/helpers/_directional-values.scss",
|
||||
"../style/bourbon/helpers/_font-source-declaration.scss",
|
||||
"../style/bourbon/helpers/_gradient-positions-parser.scss",
|
||||
"../style/bourbon/helpers/_linear-angle-parser.scss",
|
||||
"../style/bourbon/helpers/_linear-gradient-parser.scss",
|
||||
"../style/bourbon/helpers/_linear-positions-parser.scss",
|
||||
"../style/bourbon/helpers/_linear-side-corner-parser.scss",
|
||||
"../style/bourbon/helpers/_radial-arg-parser.scss",
|
||||
"../style/bourbon/helpers/_radial-positions-parser.scss",
|
||||
"../style/bourbon/helpers/_radial-gradient-parser.scss",
|
||||
"../style/bourbon/helpers/_render-gradients.scss",
|
||||
"../style/bourbon/helpers/_shape-size-stripper.scss",
|
||||
"../style/bourbon/helpers/_str-to-num.scss",
|
||||
"../style/bourbon/css3/_animation.scss",
|
||||
"../style/bourbon/css3/_appearance.scss",
|
||||
"../style/bourbon/css3/_backface-visibility.scss",
|
||||
"../style/bourbon/css3/_background.scss",
|
||||
"../style/bourbon/css3/_background-image.scss",
|
||||
"../style/bourbon/css3/_border-image.scss",
|
||||
"../style/bourbon/css3/_calc.scss",
|
||||
"../style/bourbon/css3/_columns.scss",
|
||||
"../style/bourbon/css3/_filter.scss",
|
||||
"../style/bourbon/css3/_flex-box.scss",
|
||||
"../style/bourbon/css3/_font-face.scss",
|
||||
"../style/bourbon/css3/_font-feature-settings.scss",
|
||||
"../style/bourbon/css3/_hidpi-media-query.scss",
|
||||
"../style/bourbon/css3/_hyphens.scss",
|
||||
"../style/bourbon/css3/_image-rendering.scss",
|
||||
"../style/bourbon/css3/_keyframes.scss",
|
||||
"../style/bourbon/css3/_linear-gradient.scss",
|
||||
"../style/bourbon/css3/_perspective.scss",
|
||||
"../style/bourbon/css3/_placeholder.scss",
|
||||
"../style/bourbon/css3/_radial-gradient.scss",
|
||||
"../style/bourbon/css3/_selection.scss",
|
||||
"../style/bourbon/css3/_text-decoration.scss",
|
||||
"../style/bourbon/css3/_transform.scss",
|
||||
"../style/bourbon/css3/_transition.scss",
|
||||
"../style/bourbon/css3/_user-select.scss",
|
||||
"../style/bourbon/addons/_border-color.scss",
|
||||
"../style/bourbon/addons/_border-radius.scss",
|
||||
"../style/bourbon/addons/_border-style.scss",
|
||||
"../style/bourbon/addons/_border-width.scss",
|
||||
"../style/bourbon/addons/_buttons.scss",
|
||||
"../style/bourbon/addons/_clearfix.scss",
|
||||
"../style/bourbon/addons/_ellipsis.scss",
|
||||
"../style/bourbon/addons/_font-stacks.scss",
|
||||
"../style/bourbon/addons/_hide-text.scss",
|
||||
"../style/bourbon/addons/_margin.scss",
|
||||
"../style/bourbon/addons/_padding.scss",
|
||||
"../style/bourbon/addons/_position.scss",
|
||||
"../style/bourbon/addons/_prefixer.scss",
|
||||
"../style/bourbon/addons/_retina-image.scss",
|
||||
"../style/bourbon/addons/_size.scss",
|
||||
"../style/bourbon/addons/_text-inputs.scss",
|
||||
"../style/bourbon/addons/_timing-functions.scss",
|
||||
"../style/bourbon/addons/_triangle.scss",
|
||||
"../style/bourbon/addons/_word-wrap.scss",
|
||||
"../style/bourbon/_bourbon-deprecated-upcoming.scss"
|
||||
],
|
||||
"names": [],
|
||||
"mappings": "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"
|
||||
}
|
191
css/main.css
191
css/main.css
|
@ -1,191 +0,0 @@
|
|||
body {
|
||||
font-family: "Open Sans", Frutiger, Calibri, "Myriad Pro", Myriad, sans-serif;
|
||||
background-color: #0082c9;
|
||||
color: #fff;
|
||||
height: 100%;
|
||||
margin: 0px;
|
||||
padding: 0px;
|
||||
overflow-y: hidden;
|
||||
overflow-x: hidden; }
|
||||
|
||||
#mainPopup {
|
||||
padding: 10px;
|
||||
min-height: 260px;
|
||||
overflow-y: auto;
|
||||
width: 400px;
|
||||
font-family: Helvetica, Ubuntu, Arial, sans-serif; }
|
||||
#mainPopup .pwcontainer {
|
||||
max-height: 195px;
|
||||
overflow: auto;
|
||||
/*padding-right: 15px;*/ }
|
||||
#mainPopup .pwcontainer .credential {
|
||||
position: relative;
|
||||
border: 1px solid #fff;
|
||||
margin-bottom: 0.3em;
|
||||
float: left;
|
||||
width: 100%;
|
||||
padding: 5px; }
|
||||
#mainPopup .footer {
|
||||
background: #fff;
|
||||
height: 50px;
|
||||
position: absolute;
|
||||
bottom: 0;
|
||||
margin-left: -10px;
|
||||
width: 100%;
|
||||
color: #000;
|
||||
background: -webkit-linear-gradient(#fff, #ddd);
|
||||
background: linear-gradient(#fff, #ddd); }
|
||||
#mainPopup .footer small {
|
||||
width: 100%;
|
||||
display: block;
|
||||
text-align: center; }
|
||||
#mainPopup .footer .bottomBtn {
|
||||
float: left;
|
||||
font-size: 18px;
|
||||
padding: 14px;
|
||||
cursor: pointer; }
|
||||
#mainPopup .footer .bottomBtn:hover {
|
||||
/*background-color: #ddd;*/
|
||||
background: -webkit-linear-gradient(#ddd, #fff);
|
||||
background: linear-gradient(#ddd, #fff);
|
||||
border: 1px solid #ccc; }
|
||||
|
||||
.equalDivide td {
|
||||
vertical-align: middle;
|
||||
padding: 3px; }
|
||||
|
||||
/*
|
||||
.bottom {
|
||||
position: absolute;
|
||||
bottom: 0;
|
||||
height: 60px;
|
||||
}*/
|
||||
.ng-invalid {
|
||||
border-color: #a94442; }
|
||||
|
||||
.alerts li {
|
||||
list-style-type: none; }
|
||||
|
||||
input[type="password"], input[type="text"] {
|
||||
box-sizing: border-box;
|
||||
display: inline-block;
|
||||
height: 36px;
|
||||
background-color: #fff;
|
||||
color: #333;
|
||||
border: 1px solid #ddd;
|
||||
outline: none;
|
||||
border-radius: 3px;
|
||||
padding: 7px 10px;
|
||||
font-size: 13px;
|
||||
cursor: auto; }
|
||||
|
||||
.unlock {
|
||||
min-height: 275px;
|
||||
text-align: center; }
|
||||
.unlock input[type="text"] {
|
||||
margin-top: 15px;
|
||||
margin-bottom: 15px; }
|
||||
.unlock input[type="checkbox"] {
|
||||
margin-top: 10px;
|
||||
margin-bottom: 10px; }
|
||||
.unlock .error {
|
||||
padding: 5px;
|
||||
color: #a94442;
|
||||
background-color: #f2dede;
|
||||
border-color: #ebccd1;
|
||||
margin-bottom: 10px;
|
||||
border-radius: 3px; }
|
||||
.unlock .error.ng-hide {
|
||||
display: block;
|
||||
visibility: hidden; }
|
||||
|
||||
.setup {
|
||||
background-color: #0082c9;
|
||||
color: #fff;
|
||||
min-height: 350px; }
|
||||
.setup h2 {
|
||||
font-size: 18px; }
|
||||
.setup label {
|
||||
display: block; }
|
||||
.setup input[type="text"], .setup input[type="password"] {
|
||||
width: 100%; }
|
||||
.setup input[type="text"], .setup input[type="password"], .setup select {
|
||||
display: block; }
|
||||
.setup .btn {
|
||||
position: fixed;
|
||||
bottom: 15px; }
|
||||
.setup .btn.stepNext {
|
||||
right: 15px; }
|
||||
|
||||
.angular-steps {
|
||||
position: relative; }
|
||||
.angular-steps .step {
|
||||
position: absolute;
|
||||
z-index: 1;
|
||||
margin-top: -10px;
|
||||
margin-left: -10px;
|
||||
height: 100%;
|
||||
width: 100%;
|
||||
padding: 10px; }
|
||||
.angular-steps .step.ng-hide {
|
||||
display: block !important;
|
||||
z-index: 0; }
|
||||
|
||||
/*
|
||||
* Animations (optional) - requires ngAnimate
|
||||
*/
|
||||
.angular-steps .step.ng-hide-add,
|
||||
.angular-steps .step.ng-hide-remove {
|
||||
-webkit-transition: all 0.6s ease-in-out;
|
||||
-moz-transition: all 0.6s ease-in-out;
|
||||
transition: all 0.6s ease-in-out;
|
||||
opacity: 1; }
|
||||
.angular-steps .step.ng-hide {
|
||||
opacity: 0; }
|
||||
|
||||
.nopadding {
|
||||
padding: 0; }
|
||||
|
||||
.pad5 {
|
||||
padding: 5px; }
|
||||
|
||||
.ng-hide {
|
||||
display: none; }
|
||||
|
||||
.version {
|
||||
font-size: 12px;
|
||||
margin-right: 10px; }
|
||||
|
||||
.searchContainer {
|
||||
margin-bottom: 15px; }
|
||||
|
||||
.ignored_sites {
|
||||
padding: 0; }
|
||||
.ignored_sites li {
|
||||
list-style-type: none;
|
||||
padding: 0; }
|
||||
.ignored_sites li .fa {
|
||||
margin-top: 2px;
|
||||
cursor: pointer; }
|
||||
.ignored_sites li .fa:hover {
|
||||
color: #a94442; }
|
||||
|
||||
input {
|
||||
color: #000; }
|
||||
|
||||
.editCredential tr td {
|
||||
padding: 5px; }
|
||||
|
||||
.edit:before {
|
||||
font: normal normal normal 14px/1 FontAwesome;
|
||||
content: "\f0da";
|
||||
height: 100%;
|
||||
width: 20px;
|
||||
position: absolute;
|
||||
right: 0;
|
||||
top: 0;
|
||||
bottom: 0;
|
||||
border-left: 1px solid white;
|
||||
padding-left: 8px;
|
||||
padding-top: 5%;
|
||||
cursor: pointer; }
|
|
@ -0,0 +1,87 @@
|
|||
{
|
||||
"version": 3,
|
||||
"file": "main.css",
|
||||
"sources": [
|
||||
"../style/main.scss",
|
||||
"../style/bourbon/_bourbon.scss",
|
||||
"../style/bourbon/settings/_prefixer.scss",
|
||||
"../style/bourbon/settings/_px-to-em.scss",
|
||||
"../style/bourbon/settings/_asset-pipeline.scss",
|
||||
"../style/bourbon/functions/_assign-inputs.scss",
|
||||
"../style/bourbon/functions/_contains.scss",
|
||||
"../style/bourbon/functions/_contains-falsy.scss",
|
||||
"../style/bourbon/functions/_is-length.scss",
|
||||
"../style/bourbon/functions/_is-light.scss",
|
||||
"../style/bourbon/functions/_is-number.scss",
|
||||
"../style/bourbon/functions/_is-size.scss",
|
||||
"../style/bourbon/functions/_px-to-em.scss",
|
||||
"../style/bourbon/functions/_px-to-rem.scss",
|
||||
"../style/bourbon/functions/_shade.scss",
|
||||
"../style/bourbon/functions/_strip-units.scss",
|
||||
"../style/bourbon/functions/_tint.scss",
|
||||
"../style/bourbon/functions/_transition-property-name.scss",
|
||||
"../style/bourbon/functions/_unpack.scss",
|
||||
"../style/bourbon/functions/_modular-scale.scss",
|
||||
"../style/bourbon/helpers/_convert-units.scss",
|
||||
"../style/bourbon/helpers/_directional-values.scss",
|
||||
"../style/bourbon/helpers/_font-source-declaration.scss",
|
||||
"../style/bourbon/helpers/_gradient-positions-parser.scss",
|
||||
"../style/bourbon/helpers/_linear-angle-parser.scss",
|
||||
"../style/bourbon/helpers/_linear-gradient-parser.scss",
|
||||
"../style/bourbon/helpers/_linear-positions-parser.scss",
|
||||
"../style/bourbon/helpers/_linear-side-corner-parser.scss",
|
||||
"../style/bourbon/helpers/_radial-arg-parser.scss",
|
||||
"../style/bourbon/helpers/_radial-positions-parser.scss",
|
||||
"../style/bourbon/helpers/_radial-gradient-parser.scss",
|
||||
"../style/bourbon/helpers/_render-gradients.scss",
|
||||
"../style/bourbon/helpers/_shape-size-stripper.scss",
|
||||
"../style/bourbon/helpers/_str-to-num.scss",
|
||||
"../style/bourbon/css3/_animation.scss",
|
||||
"../style/bourbon/css3/_appearance.scss",
|
||||
"../style/bourbon/css3/_backface-visibility.scss",
|
||||
"../style/bourbon/css3/_background.scss",
|
||||
"../style/bourbon/css3/_background-image.scss",
|
||||
"../style/bourbon/css3/_border-image.scss",
|
||||
"../style/bourbon/css3/_calc.scss",
|
||||
"../style/bourbon/css3/_columns.scss",
|
||||
"../style/bourbon/css3/_filter.scss",
|
||||
"../style/bourbon/css3/_flex-box.scss",
|
||||
"../style/bourbon/css3/_font-face.scss",
|
||||
"../style/bourbon/css3/_font-feature-settings.scss",
|
||||
"../style/bourbon/css3/_hidpi-media-query.scss",
|
||||
"../style/bourbon/css3/_hyphens.scss",
|
||||
"../style/bourbon/css3/_image-rendering.scss",
|
||||
"../style/bourbon/css3/_keyframes.scss",
|
||||
"../style/bourbon/css3/_linear-gradient.scss",
|
||||
"../style/bourbon/css3/_perspective.scss",
|
||||
"../style/bourbon/css3/_placeholder.scss",
|
||||
"../style/bourbon/css3/_radial-gradient.scss",
|
||||
"../style/bourbon/css3/_selection.scss",
|
||||
"../style/bourbon/css3/_text-decoration.scss",
|
||||
"../style/bourbon/css3/_transform.scss",
|
||||
"../style/bourbon/css3/_transition.scss",
|
||||
"../style/bourbon/css3/_user-select.scss",
|
||||
"../style/bourbon/addons/_border-color.scss",
|
||||
"../style/bourbon/addons/_border-radius.scss",
|
||||
"../style/bourbon/addons/_border-style.scss",
|
||||
"../style/bourbon/addons/_border-width.scss",
|
||||
"../style/bourbon/addons/_buttons.scss",
|
||||
"../style/bourbon/addons/_clearfix.scss",
|
||||
"../style/bourbon/addons/_ellipsis.scss",
|
||||
"../style/bourbon/addons/_font-stacks.scss",
|
||||
"../style/bourbon/addons/_hide-text.scss",
|
||||
"../style/bourbon/addons/_margin.scss",
|
||||
"../style/bourbon/addons/_padding.scss",
|
||||
"../style/bourbon/addons/_position.scss",
|
||||
"../style/bourbon/addons/_prefixer.scss",
|
||||
"../style/bourbon/addons/_retina-image.scss",
|
||||
"../style/bourbon/addons/_size.scss",
|
||||
"../style/bourbon/addons/_text-inputs.scss",
|
||||
"../style/bourbon/addons/_timing-functions.scss",
|
||||
"../style/bourbon/addons/_triangle.scss",
|
||||
"../style/bourbon/addons/_word-wrap.scss",
|
||||
"../style/bourbon/_bourbon-deprecated-upcoming.scss"
|
||||
],
|
||||
"names": [],
|
||||
"mappings": "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"
|
||||
}
|
|
@ -1,226 +0,0 @@
|
|||
.passwordPickerIcon .fa-key {
|
||||
-webkit-transform: rotate(135deg);
|
||||
-moz-transform: rotate(135deg);
|
||||
-ms-transform: rotate(135deg);
|
||||
-o-transform: rotate(135deg);
|
||||
transform: rotate(135deg);
|
||||
cursor: pointer; }
|
||||
|
||||
body {
|
||||
padding: 0;
|
||||
margin: 0;
|
||||
overflow: hidden;
|
||||
background-color: transparent; }
|
||||
|
||||
small {
|
||||
color: #797979; }
|
||||
|
||||
#password_picker {
|
||||
width: 330px;
|
||||
border: 2px solid #000;
|
||||
max-height: 375px;
|
||||
overflow: hidden;
|
||||
z-index: 9999999;
|
||||
box-sizing: content-box;
|
||||
font-family: 'Open Sans', Frutiger, Calibri, 'Myriad Pro', Myriad, sans-serif; }
|
||||
#password_picker .tabs {
|
||||
position: static;
|
||||
height: 37px;
|
||||
background-color: #0082c9;
|
||||
margin-bottom: 0;
|
||||
float: left;
|
||||
width: 100%; }
|
||||
#password_picker .tabs .tab {
|
||||
float: left;
|
||||
margin-bottom: 0;
|
||||
padding: 10px 10px;
|
||||
color: #004378;
|
||||
cursor: pointer; }
|
||||
#password_picker .tabs .tab .fa {
|
||||
font-size: 16px;
|
||||
box-sizing: content-box;
|
||||
margin: 0;
|
||||
padding: 0; }
|
||||
#password_picker .tabs .tab.active {
|
||||
color: #0082c9;
|
||||
background: #fff; }
|
||||
#password_picker .tabs .tab.active:hover {
|
||||
color: #0082C9; }
|
||||
#password_picker .tabs .tab:hover {
|
||||
color: #e1e1e1; }
|
||||
#password_picker .tabs .tab.close {
|
||||
float: right;
|
||||
margin-top: -6px;
|
||||
padding: 11px 10px;
|
||||
border-left: 1px solid #1572b9; }
|
||||
#password_picker div {
|
||||
box-sizing: content-box; }
|
||||
#password_picker .input {
|
||||
float: left;
|
||||
background: #fff;
|
||||
color: #555;
|
||||
cursor: text;
|
||||
font-family: inherit;
|
||||
border: 1px solid #ddd;
|
||||
outline: none;
|
||||
height: 21px;
|
||||
border-radius: 3px;
|
||||
margin: 3px 3px 3px 0;
|
||||
padding: 5px 6px 5px;
|
||||
font-size: 13px;
|
||||
box-sizing: content-box;
|
||||
background-clip: padding-box; }
|
||||
#password_picker input[type="password"], #password_picker input[type="text"]:not(#savepw-password) {
|
||||
width: calc(100% - 24px) !important; }
|
||||
#password_picker input[type="password"], #password_picker #savepw-password {
|
||||
width: calc(100% - 75px) !important;
|
||||
border-top-left-radius: 0px;
|
||||
border-top-right-radius: 0px;
|
||||
border-bottom-right-radius: 0px;
|
||||
border-top-right-radius: 0px;
|
||||
border-bottom-left-radius: 0px;
|
||||
border-bottom-right-radius: 0px;
|
||||
border-bottom-left-radius: 0px;
|
||||
border-top-left-radius: 0px; }
|
||||
#password_picker .niceInputButtons {
|
||||
float: left;
|
||||
margin-top: 3px;
|
||||
margin-left: -3px; }
|
||||
#password_picker .niceInputButtons .cell {
|
||||
margin-left: -5px;
|
||||
display: inline-block;
|
||||
font-size: 14px;
|
||||
border: 1px solid #ddd;
|
||||
background-color: #eaeaea;
|
||||
cursor: pointer;
|
||||
height: 24px;
|
||||
padding: 7px 8px 0; }
|
||||
#password_picker .niceInputButtons .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; }
|
||||
#password_picker .rrow {
|
||||
float: left;
|
||||
width: 100%;
|
||||
margin-bottom: 5px; }
|
||||
#password_picker .tab-content {
|
||||
display: block;
|
||||
box-sizing: content-box;
|
||||
background: #fff;
|
||||
padding: 5px;
|
||||
margin: 0;
|
||||
width: calc(100% - 11px);
|
||||
overflow: auto;
|
||||
font-size: 13px;
|
||||
max-height: 330px; }
|
||||
#password_picker .tab-content .pull-left {
|
||||
float: left; }
|
||||
#password_picker .tab-content h2 {
|
||||
font-size: 16px;
|
||||
margin: 0 0 15px 0px; }
|
||||
#password_picker .tab-content .tab-add-content label {
|
||||
display: block;
|
||||
margin-bottom: 5px; }
|
||||
#password_picker .tab-content .tab-list-content, #password_picker .tab-content #searchResults {
|
||||
width: 100%;
|
||||
font-size: 15px; }
|
||||
#password_picker .tab-content .tab-list-content .account, #password_picker .tab-content #searchResults .account {
|
||||
position: relative;
|
||||
min-height: 40px;
|
||||
padding: 6px 7px;
|
||||
border-bottom: 1px solid #e1e8ed;
|
||||
cursor: pointer; }
|
||||
#password_picker .tab-content .tab-list-content .no-credentials, #password_picker .tab-content #searchResults .no-credentials {
|
||||
width: 100%;
|
||||
padding-top: 10px;
|
||||
display: inline-block; }
|
||||
#password_picker .tab-content .tab-list-content .no-credentials div, #password_picker .tab-content #searchResults .no-credentials div {
|
||||
float: left;
|
||||
margin-bottom: 10px; }
|
||||
#password_picker .tab-content .tab-generate-content .pw-gen input {
|
||||
width: calc(100% - 75px) !important;
|
||||
float: left;
|
||||
background: #fff;
|
||||
color: #555;
|
||||
cursor: text;
|
||||
font-family: inherit;
|
||||
border: 1px solid #ddd;
|
||||
outline: none;
|
||||
height: 19px;
|
||||
min-height: 16px;
|
||||
border-radius: 3px;
|
||||
margin: 3px 3px 3px 0;
|
||||
padding: 7px 6px 5px;
|
||||
font-size: 13px;
|
||||
box-sizing: content-box;
|
||||
-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; }
|
||||
#password_picker .tab-content .tab-generate-content .password_settings {
|
||||
clear: both; }
|
||||
#password_picker .tab-content .tab-generate-content .password_settings .adv_opt {
|
||||
cursor: pointer; }
|
||||
#password_picker .tab-content .tab-generate-content .password_settings .pw-setting-advanced {
|
||||
width: 100%; }
|
||||
#password_picker .tab-content .tab-generate-content .password_settings .pw-setting-advanced label {
|
||||
display: block;
|
||||
margin-right: 10px;
|
||||
margin-bottom: 5px; }
|
||||
#password_picker .tab-content .tab-generate-content .password_settings .pw-setting-advanced label .label {
|
||||
color: #000;
|
||||
padding: 3px 4px;
|
||||
font-size: 12px;
|
||||
font-weight: normal;
|
||||
margin-top: 1px;
|
||||
float: right;
|
||||
box-shadow: none; }
|
||||
#password_picker .tab-content .tab-generate-content .password_settings .pw-setting-advanced .pw-len, #password_picker .tab-content .tab-generate-content .password_settings .pw-setting-advanced .digits {
|
||||
float: left;
|
||||
margin-bottom: 10px; }
|
||||
#password_picker .tab-content .tab-generate-content .password_settings .pw-setting-advanced .pw-len .label, #password_picker .tab-content .tab-generate-content .password_settings .pw-setting-advanced .digits .label {
|
||||
margin-bottom: 5px;
|
||||
float: left; }
|
||||
#password_picker .tab-content .clearfix {
|
||||
clear: both; }
|
||||
#password_picker .btn {
|
||||
display: inline-block;
|
||||
font-weight: 400;
|
||||
line-height: 1.25;
|
||||
text-align: center;
|
||||
white-space: nowrap;
|
||||
vertical-align: middle;
|
||||
-webkit-user-select: none;
|
||||
-moz-user-select: none;
|
||||
-ms-user-select: none;
|
||||
user-select: none;
|
||||
border: 1px solid transparent;
|
||||
padding: .5rem 1rem;
|
||||
cursor: pointer;
|
||||
border-radius: .25rem;
|
||||
-webkit-transition: all .2s ease-in-out;
|
||||
-o-transition: all .2s ease-in-out;
|
||||
transition: all .2s ease-in-out; }
|
||||
#password_picker .btn-secondary {
|
||||
color: #292b2c;
|
||||
background-color: #fff;
|
||||
border-color: #ccc; }
|
||||
#password_picker .btn-secondary:hover {
|
||||
color: #292b2c;
|
||||
background-color: #e6e6e6;
|
||||
border-color: #adadad; }
|
||||
#password_picker .btn:first-child {
|
||||
margin-right: 25px; }
|
||||
#password_picker .btn:hover {
|
||||
background: #3cb0fd;
|
||||
text-decoration: none; }
|
||||
#password_picker .btn-success {
|
||||
color: #fff;
|
||||
background-color: #5cb85c;
|
||||
border-color: #4cae4c; }
|
||||
|
||||
.error {
|
||||
border-color: #F44336 !important; }
|
Различия файлов скрыты, потому что одна или несколько строк слишком длинны
|
@ -40,6 +40,13 @@
|
|||
<span class="bar"></span>
|
||||
<label>{{'password_repeat' | translate}}</label>
|
||||
</div>
|
||||
<div class="group">
|
||||
<copy-text text="credential.description"></copy-text>
|
||||
<textarea ng-model="credential.description" ng-disabled="!canEdit"></textarea>
|
||||
<span class="highlight"></span>
|
||||
<span class="bar"></span>
|
||||
<label>{{'notes' | translate}}</label>
|
||||
</div>
|
||||
<div class="group">
|
||||
<copy-text text="credential.url"></copy-text>
|
||||
<input type="text" ng-model="credential.url" ng-disabled="!canEdit">
|
||||
|
|
|
@ -21,7 +21,10 @@
|
|||
"karma-jasmine": "^1.1.0",
|
||||
"karma-verbose-reporter": "0.0.6"
|
||||
},
|
||||
"devDependencies": {},
|
||||
"devDependencies": {
|
||||
"grunt-contrib-watch": "^1.0.0",
|
||||
"grunt-sass": "^2.1.0"
|
||||
},
|
||||
"scripts": {
|
||||
"test": "echo \"Error: no test specified\" && exit 1"
|
||||
},
|
||||
|
|
|
@ -12,7 +12,7 @@ body {
|
|||
&.setup{
|
||||
width: 100%;
|
||||
}
|
||||
max-width: 450px;
|
||||
width: 450px;
|
||||
min-height: 350px;
|
||||
font-family: 'Roboto', sans-serif;
|
||||
overflow-x: hidden;
|
||||
|
|
|
@ -9,6 +9,7 @@ body {
|
|||
padding: 0px;
|
||||
overflow-y: hidden;
|
||||
overflow-x: hidden;
|
||||
|
||||
}
|
||||
|
||||
#mainPopup {
|
||||
|
|
|
@ -11,8 +11,10 @@
|
|||
.group:last-child{
|
||||
margin-bottom: 0;
|
||||
}
|
||||
|
||||
input[type="text"], input[type="password"], select.input-md {
|
||||
textarea{
|
||||
max-width: 395px;
|
||||
}
|
||||
input[type="text"], input[type="password"], select.input-md, textarea {
|
||||
font-size: 14px;
|
||||
padding: 10px 10px 10px 5px;
|
||||
display: block;
|
||||
|
@ -48,7 +50,7 @@ select.input-md{
|
|||
/* active state */
|
||||
input[type="text"]:focus ~ label,input[type="password"]:focus ~ label,
|
||||
input[type="text"].ng-valid:not(.ng-empty) ~ label,input[type="password"].ng-valid:not(.ng-empty) ~ label,
|
||||
select.ng-valid:not(.ng-empty) ~ label {
|
||||
select.ng-valid:not(.ng-empty) ~ label, textarea.ng-valid:not(.ng-empty) ~ label, textarea:focus ~ label {
|
||||
top: -20px;
|
||||
font-size: 14px;
|
||||
color: #1565c0;
|
||||
|
@ -149,7 +151,7 @@ input:focus ~ .bar:before, input:focus ~ .bar:after {
|
|||
width: calc(100% - 32px);
|
||||
}
|
||||
/* active state */
|
||||
input:focus ~ .highlight, select.input-md ~ .highlight {
|
||||
input:focus ~ .highlight, select.input-md ~ .highlight, textarea:focus ~ .highlight {
|
||||
-webkit-animation: inputHighlighter 0.3s ease;
|
||||
-moz-animation: inputHighlighter 0.3s ease;
|
||||
animation: inputHighlighter 0.3s ease;
|
||||
|
|
Загрузка…
Ссылка в новой задаче