2016-10-19 23:44:19 +08:00
|
|
|
/**
|
|
|
|
* 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/>.
|
|
|
|
*
|
|
|
|
*/
|
2016-09-10 20:02:54 +08:00
|
|
|
|
2016-09-11 18:33:09 +08:00
|
|
|
@import 'variables';
|
2016-09-11 05:30:17 +08:00
|
|
|
@import 'mixins';
|
|
|
|
@import 'partials/button';
|
2016-09-12 04:14:11 +08:00
|
|
|
@import 'partials/popovermenu';
|
2016-09-13 06:10:24 +08:00
|
|
|
@import 'partials/tabs';
|
|
|
|
@import 'partials/pwgen';
|
2016-09-11 05:30:17 +08:00
|
|
|
@import 'vaults';
|
2016-09-12 04:14:11 +08:00
|
|
|
@import 'credentials';
|
2016-09-12 04:57:55 +08:00
|
|
|
@import 'menu';
|
2016-09-21 02:03:37 +08:00
|
|
|
@import 'share_credential';
|
2016-09-25 02:16:57 +08:00
|
|
|
@import 'settings';
|
2016-09-12 04:57:55 +08:00
|
|
|
|
|
|
|
#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;
|
2016-09-12 21:32:59 +08:00
|
|
|
}
|
|
|
|
.ui-dialog{
|
|
|
|
z-index: 9999;
|
2016-09-13 06:10:24 +08:00
|
|
|
}
|
|
|
|
#notification{
|
|
|
|
.row{
|
|
|
|
margin-left: 0 !important;
|
|
|
|
margin-right: 0 !important;
|
|
|
|
}
|
2016-09-25 23:55:29 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
//
|
|
|
|
#app-content #app-content-wrapper #passman-controls {
|
|
|
|
border-bottom: 1px solid #c9c9c9;
|
|
|
|
}
|
|
|
|
|
2016-09-26 00:19:55 +08:00
|
|
|
|
2016-09-25 23:55:29 +08:00
|
|
|
#passman-controls {
|
|
|
|
box-sizing: border-box;
|
|
|
|
position: fixed;
|
|
|
|
top: 45px;
|
|
|
|
right: 0;
|
|
|
|
left: 0;
|
|
|
|
|
|
|
|
padding: 0 !important;
|
|
|
|
margin: 0;
|
|
|
|
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;
|
2016-09-26 00:19:55 +08:00
|
|
|
|
2016-09-25 23:55:29 +08:00
|
|
|
height: 44px !important;
|
|
|
|
}
|
2016-09-26 00:19:55 +08:00
|
|
|
@media only screen and (max-width: 768px){
|
|
|
|
#passman-controls{
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
@media only screen and (min-width: 768px){
|
|
|
|
#app-navigation+#app-content #passman-controls {
|
|
|
|
left: 250px;
|
|
|
|
width: calc( 100% - 250px ) !important;
|
|
|
|
}
|
|
|
|
}
|
2016-09-25 23:55:29 +08:00
|
|
|
#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;
|
2016-10-24 16:53:59 +08:00
|
|
|
}
|
|
|
|
.nopadding{
|
|
|
|
padding-right: 0;
|
|
|
|
padding-left: 0;
|
2016-09-12 04:57:55 +08:00
|
|
|
}
|