Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/passman-webextension.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorbrantje <brantje@gmail.com>2017-04-09 00:08:43 +0300
committerbrantje <brantje@gmail.com>2017-04-09 00:11:33 +0300
commit3f19334a0d6ddebbe242e5b5ef735c1e7cb4af70 (patch)
tree48a5c5f57d7fdb1ce2cb5ff1171d7eefbad7d1bd /style/password_picker.scss
parentf9577824a0b29ab2d0f33cb36b0e8739f2fe8c66 (diff)
Add search. Fixes #21
Diffstat (limited to 'style/password_picker.scss')
-rw-r--r--style/password_picker.scss42
1 files changed, 25 insertions, 17 deletions
diff --git a/style/password_picker.scss b/style/password_picker.scss
index be4d221..9ce4670 100644
--- a/style/password_picker.scss
+++ b/style/password_picker.scss
@@ -8,9 +8,6 @@
fieldset.fields1 div {
}
.passwordPickerIcon{
-
-
-
.fa-key{
@include transform(rotate(135deg));
cursor: pointer;
@@ -83,10 +80,10 @@ body{
font-family: inherit;
border: 1px solid #ddd;
outline: none;
- height: 19px;
+ height: 21px;
border-radius: 3px;
margin: 3px 3px 3px 0;
- padding: 7px 6px 5px;
+ padding: 5px 6px 5px;
font-size: 13px;
box-sizing: content-box;
background-clip: padding-box;
@@ -156,7 +153,7 @@ body{
}
}
- .tab-list-content {
+ .tab-list-content,#searchResults {
width: 100%;
.account {
position: relative;
@@ -241,21 +238,32 @@ body{
.btn {
display: inline-block;
- padding: 6px 12px;
- margin-bottom: 0;
- font-size: 13px;
- font-weight: normal;
- line-height: 1.42857143;
+ font-weight: 400;
+ line-height: 1.25;
text-align: center;
white-space: nowrap;
vertical-align: middle;
- -ms-touch-action: manipulation;
- touch-action: manipulation;
- cursor: pointer;
- @include user-select(none);
- background-image: none;
+ -webkit-user-select: none;
+ -moz-user-select: none;
+ -ms-user-select: none;
+ user-select: none;
border: 1px solid transparent;
- border-radius: 4px;
+ 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;
+ }
+ .btn-secondary {
+ color: #292b2c;
+ background-color: #fff;
+ border-color: #ccc;
+ }
+ .btn-secondary:hover {
+ color: #292b2c;
+ background-color: #e6e6e6;
+ border-color: #adadad;
}
.btn:first-child {
margin-right: 25px;