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

doorhanger.scss « style - github.com/nextcloud/passman-webextension.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: eb0f04836c30a93b728002a95f73022f26be2555 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
@import "bourbon/bourbon";

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;


  .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;
  }

  .passman-btn {
    outline: none;
    &:hover{
      background-color: #c9c9c9;
    }
    &.btn-success {
      background: #3498db;
      color: #fff;
    }
    &.btn-cancel {
      color: #a8353c;
    }
    &.btn-save {
      .btn-txt {
        padding-right: 5px;
      }
    }

    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;
    @include user-select(none);
    background-image: none;
    background-color: #fff;
    color: #000;
    /*margin-right: 15px;*/
    border: 0px solid transparent;

    .caret-container {
      &:hover{
        background-color: #c9c9c9;
      }
      > .caret-container-txt {
        border-bottom: 1px dashed #fff;
      }
      height: 100%;
      display: inline-block;
      padding: 0 5px;
      width: 50%;
      background-color: white;
      color: #000;
    }
  }

  .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, .15);
    -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, .175);
    box-shadow: 0 6px 12px rgba(0, 0, 0, .175);
    padding: 5px 0;
    .account {
      &:hover {
        color: #262626;
        text-decoration: none;
        background-color: #f5f5f5;
      }
      display: block;
      padding: 3px 5px 3px 10px;
      clear: both;
      font-weight: 400;
      line-height: 1.42857143;
      color: #333;
      white-space: nowrap;
      text-align: left;
    }
  }
}