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

app.css « css - github.com/nextcloud/passman.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: dc01de4addcc8c9693f6381bdeb5e397006920a7 (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
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
.button-geen {
  background: #37ce02;
  color: #fff; }

.button-geen:hover {
  background: #3ad802;
  color: #fff; }

.button-red {
  background: #ce3702;
  color: #fff; }

.button-red:hover {
  background: #d83a02;
  color: #fff; }

.tab_header {
  list-style: none;
  padding: 0;
  margin: 0; }
  .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;
    color: #696969;
    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 {
    background-color: #0082c9 !important;
    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 {
    width: calc(100% - 76px) !important;
    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; }

.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; }
    .vault_wrapper .login_form .error {
      color: #ce3702; }
    .vault_wrapper .login_form .pw-input .last_access {
      color: #8e8e8e; }
    .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; }

@media screen and (max-width: 768px) {
  .vault_wrapper {
    width: 90%; } }
#app-content {
  overflow-x: hidden; }
  #app-content #app-content-wrapper {
    min-height: 95%; }
    #app-content #app-content-wrapper .actions.creatable {
      padding-left: 10px; }
      #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 {
          font-size: 12px;
          display: inline; }
      #app-content #app-content-wrapper .actions.creatable .bubble:after {
        right: inherit;
        left: 10px;
        top: -19px; }
    #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; }
        #app-content #app-content-wrapper .credential-table tr td .label {
          float: left; }
        #app-content #app-content-wrapper .credential-table tr td .tags {
          float: right; }
          #app-content #app-content-wrapper .credential-table tr td .tags .tag {
            background-color: rgba(240, 240, 240, 0.9);
            padding: 4px;
            font-size: 11px; }
        #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;
          cursor: pointer; }
        #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; }
    #app-content #app-content-wrapper .edit_credential {
      padding-top: 10px; }
      #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 .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;
          float: left; }
        #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 {
          width: 100%; }
          #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 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; }
      #app-content #app-content-wrapper .edit_credential .file_tab .progress {
        margin-top: 10px;
        height: 10px; }
        #app-content #app-content-wrapper .edit_credential .file_tab .progress .progress-bar {
          height: 10px;
          background-image: none;
          background-color: #0082c9; }
    #app-content #app-content-wrapper .view_pane {
      -webkit-box-shadow: 0px -4px 3px rgba(150, 150, 150, 0.75);
      -moz-box-shadow: 0px -4px 3px rgba(150, 150, 150, 0.75);
      box-shadow: 0px -4px 3px rgba(150, 150, 150, 0.75);
      padding: 10px;
      position: absolute;
      bottom: 0;
      background-color: #eee;
      left: 0;
      right: 0;
      display: none;
      overflow-y: auto; }
      #app-content #app-content-wrapper .view_pane.item_selected {
        height: 25%;
        display: inline-block; }
      #app-content #app-content-wrapper .view_pane table {
        width: 100%; }
        #app-content #app-content-wrapper .view_pane table tr td:first-child {
          width: 15%; }
        #app-content #app-content-wrapper .view_pane table tr td {
          width: auto;
          white-space: nowrap;
          height: 20px;
          vertical-align: middle; }

.credential_field {
  overflow: hidden; }
  .credential_field .cell, .credential_field .value {
    float: left; }
  .credential_field .tools {
    margin-left: 10px;
    overflow: hidden;
    float: left; }
    .credential_field .tools .cell {
      cursor: pointer;
      margin-right: 4px; }

.settings-container div {
  padding-left: 15px; }
  .settings-container div .link {
    color: #0066ff !important;
    cursor: pointer; }
  .settings-container div .link:hover {
    text-decoration: underline; }

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

.ui-dialog {
  z-index: 9999; }

#notification .row {
  margin-left: 0 !important;
  margin-right: 0 !important; }

/*# sourceMappingURL=app.css.map */