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

app.scss « sass - github.com/nextcloud/passman.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 5e5437047f9bb6c0403491e63d38f594371fd67d (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
/**
 * Nextcloud - passman
 *
 * @copyright Copyright (c) 2016, Sander Brand (brantje@gmail.com)
 * @copyright Copyright (c) 2016, Marcos Zuriaga Miguel (wolfi@wolfi.es)
 * @license GNU AGPL version 3 or any later version
 *
 * This program is free software: you can redistribute it and/or modify
 * it under the terms of the GNU Affero General Public License as
 * published by the Free Software Foundation, either version 3 of the
 * License, or (at your option) any later version.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU Affero General Public License for more details.
 *
 * You should have received a copy of the GNU Affero General Public License
 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
 *
 */

@import 'variables';
@import 'mixins';
@import 'partials/button';
@import 'partials/popovermenu';
@import 'partials/tabs';
@import 'partials/pwgen';
@import 'partials/icon-picker';
@import 'partials/share-incoming';
@import 'vaults';
@import 'credentials';
@import 'menu';
@import 'share_credential';
@import 'settings';
@import 'searchboxexpander';
@import 'toastify';

.app-passman{
  overflow-x: hidden;
}

.template-hidden{
  display: none !important;
}

.hide-animation {
  display: inherit !important;
  transition: ease-in-out .15s;
}
.hide-animation.ng-hide {
  opacity: 0;
}


.ui-dialog{
  z-index: 9999;
}
#notification{
  .row{
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
}

#app-content #app-content-wrapper #passman-controls {
  border-bottom: 1px solid #c9c9c9;
}

#passman-controls {
  box-sizing: border-box;
  position: fixed;
  margin: -45px 0 0;
  right: 0;
  left: 0;
  border-bottom: 1px solid #c9c9c9;
  padding: 0 !important;
  background-color: rgba(255, 255, 255, .95);
  z-index: 50;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;

  height: 44px !important;
  .breadcrumb{
    //Move Homeicon to the right to prevent overlap with burgermenu
    @media only screen and (max-width: 769px) {
      padding-left: 15px;
    }
    .addCredential{
      padding-top: 1px;
    }
  }
}
@media only screen and (max-width: 768px){
  #passman-controls{
    width: 100%;
  }
}
@media only screen and (min-width: 1024px){
  #app-navigation+#app-content #passman-controls {
    left: 300px;
    width: calc( 100% - 300px ) !important;
  }
}
#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;
}
.nopadding{
  padding-right: 0;
  padding-left: 0;
}
.clearfix{
  clear: both;
}
//Fix NC fucking up our style
input[type="checkbox"]{
  min-height: inherit;
  cursor: pointer;
}
.alert {
  padding: 15px;
  margin-bottom: 20px;
  border: 1px solid transparent;
  border-radius: 4px;
}
.alert-danger {
  color: #a94442;
  background-color: #f2dede;
  border-color: #ebccd1;
}

.ui-button.ui-widget{
  min-height: unset !important;
}