2017-01-12 17:02:14 +03:00
|
|
|
/**
|
2017-01-25 16:13:28 +03:00
|
|
|
* @copyright Copyright (c) 2016, John Molakvoæ <skjnldsv@protonmail.com>
|
|
|
|
* @copyright Copyright (c) 2016, Morris Jobke <hey@morrisjobke.de>
|
|
|
|
* @copyright Copyright (c) 2016, Julia Bode <julia.bode@lulisaur.us>
|
|
|
|
* @copyright Copyright (c) 2016, Christoph Wurst <christoph@winzerhof-wurst.at>
|
|
|
|
* @copyright Copyright (c) 2015, Hendrik Leppelsack <hendrik@leppelsack.de>
|
|
|
|
* @copyright Copyright (c) 2015, Jan-Christoph Borchardt <hey@jancborchardt.net>
|
|
|
|
* @copyright Copyright (c) 2015, Vincent Petry <pvince81@owncloud.com>
|
|
|
|
* @copyright Copyright (c) 2015, Arthur Schiwon <blizzz@owncloud.com>
|
|
|
|
* @copyright Copyright (c) 2015, Roeland Jago Douma <roeland@famdouma.nl>
|
|
|
|
* @copyright Copyright (c) 2015, Morris Jobke <hey@morrisjobke.de>
|
2017-01-12 17:02:14 +03:00
|
|
|
*
|
|
|
|
* @license GNU AGPL version 3 or any later version
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
/* SHARE TAB STYLING -------------------------------------------------------- */
|
2016-12-22 13:17:47 +03:00
|
|
|
.shareTabView {
|
|
|
|
.unshare.icon-loading-small {
|
|
|
|
margin-top: 1px;
|
|
|
|
}
|
|
|
|
.shareWithLoading, .linkShare .icon-loading-small {
|
|
|
|
display: inline-block !important;
|
|
|
|
padding-left: 10px;
|
|
|
|
}
|
|
|
|
.shareWithLoading {
|
|
|
|
position: relative;
|
|
|
|
right: 70px;
|
|
|
|
top: 2px;
|
|
|
|
}
|
|
|
|
.icon-loading-small.hidden {
|
|
|
|
display: none !important;
|
|
|
|
}
|
|
|
|
.avatar {
|
|
|
|
margin-right: 8px;
|
|
|
|
display: inline-block;
|
|
|
|
overflow: hidden;
|
|
|
|
vertical-align: middle;
|
|
|
|
width: 32px;
|
|
|
|
height: 32px;
|
|
|
|
}
|
2017-01-12 17:02:14 +03:00
|
|
|
label {
|
|
|
|
font-weight: 400;
|
|
|
|
white-space: nowrap;
|
|
|
|
}
|
2017-05-04 02:34:29 +03:00
|
|
|
input[type='radio'].radio + label {
|
|
|
|
margin-left: -1px;
|
|
|
|
}
|
2017-01-12 17:02:14 +03:00
|
|
|
input[type='checkbox'] {
|
|
|
|
margin: 0 3px 0 8px;
|
|
|
|
vertical-align: middle;
|
|
|
|
}
|
|
|
|
input[type='submit'] {
|
|
|
|
margin-left: 7px;
|
|
|
|
}
|
|
|
|
form {
|
|
|
|
font-size: 100%;
|
|
|
|
margin-left: 0;
|
|
|
|
margin-right: 0;
|
|
|
|
}
|
|
|
|
.error {
|
2017-02-19 21:50:21 +03:00
|
|
|
color: $color-error;
|
|
|
|
border-color: $color-error;
|
|
|
|
box-shadow: 0 0 6px rgba($color-error, 0.35);
|
2017-01-12 17:02:14 +03:00
|
|
|
}
|
|
|
|
.mailView .icon-mail {
|
|
|
|
opacity: 0.5;
|
|
|
|
}
|
2016-12-22 13:17:47 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
.share-autocomplete-item {
|
|
|
|
display: flex;
|
|
|
|
.autocomplete-item-text {
|
|
|
|
margin-left: 10px;
|
|
|
|
margin-right: 10px;
|
|
|
|
white-space: nowrap;
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
overflow: hidden;
|
|
|
|
line-height: 32px;
|
|
|
|
vertical-align: middle;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-02-22 02:07:07 +03:00
|
|
|
.ui-autocomplete .autocomplete-note {
|
|
|
|
padding: 5px 10px;
|
|
|
|
color: rgba(0, 0, 0, .3);
|
|
|
|
}
|
|
|
|
|
2016-12-22 13:17:47 +03:00
|
|
|
#shareWithList {
|
|
|
|
list-style-type: none;
|
|
|
|
padding: 8px;
|
2017-01-21 21:02:48 +03:00
|
|
|
> li {
|
2017-04-24 12:39:03 +03:00
|
|
|
position: relative;
|
2016-12-22 13:17:47 +03:00
|
|
|
padding-top: 10px;
|
|
|
|
padding-bottom: 10px;
|
|
|
|
font-weight: bold;
|
|
|
|
line-height: 21px;
|
|
|
|
white-space: normal;
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
.sharingOptionsGroup {
|
|
|
|
flex-shrink: 0;
|
|
|
|
position: relative;
|
|
|
|
.popovermenu {
|
2017-01-21 21:02:48 +03:00
|
|
|
right: -11px;
|
|
|
|
top: 35px;
|
2016-12-22 13:17:47 +03:00
|
|
|
padding: 3px 6px;
|
|
|
|
}
|
|
|
|
}
|
2017-04-24 12:39:03 +03:00
|
|
|
|
2016-12-22 13:17:47 +03:00
|
|
|
.shareOption {
|
|
|
|
white-space: nowrap;
|
|
|
|
display: inline-block;
|
|
|
|
}
|
2017-01-12 17:02:14 +03:00
|
|
|
.unshare img,
|
|
|
|
.showCruds img {
|
2016-12-22 13:17:47 +03:00
|
|
|
vertical-align: text-bottom;
|
|
|
|
/* properly align icons */
|
|
|
|
}
|
|
|
|
label input[type=checkbox] {
|
|
|
|
margin-left: 0;
|
|
|
|
position: relative;
|
|
|
|
}
|
|
|
|
.username {
|
|
|
|
padding-right: 8px;
|
|
|
|
white-space: nowrap;
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
display: inline-block;
|
|
|
|
overflow: hidden;
|
|
|
|
vertical-align: middle;
|
|
|
|
flex-grow: 5;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
a {
|
|
|
|
&.showCruds {
|
|
|
|
display: inline;
|
|
|
|
opacity: .5;
|
|
|
|
}
|
|
|
|
&.unshare {
|
|
|
|
display: inline-block;
|
|
|
|
opacity: .5;
|
|
|
|
padding: 10px;
|
|
|
|
}
|
2017-01-12 17:02:14 +03:00
|
|
|
&.showCruds:hover,
|
|
|
|
&.unshare:hover {
|
|
|
|
opacity: 1;
|
|
|
|
}
|
2016-12-22 13:17:47 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
#link {
|
2017-03-06 00:38:59 +03:00
|
|
|
border-top: 1px solid nc-lighten($color-main-text, 86%);
|
2016-12-22 13:17:47 +03:00
|
|
|
padding-top: 8px;
|
2017-01-12 17:02:14 +03:00
|
|
|
#showPassword img {
|
|
|
|
padding-left: 5px;
|
|
|
|
width: 12px;
|
2016-12-22 13:17:47 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-01-12 17:02:14 +03:00
|
|
|
.reshare,
|
|
|
|
#link label,
|
|
|
|
#expiration label {
|
2016-12-22 13:17:47 +03:00
|
|
|
display: inline-block;
|
|
|
|
padding: 6px 4px;
|
|
|
|
}
|
|
|
|
|
2017-04-24 16:31:44 +03:00
|
|
|
.resharerInfoView.subView {
|
|
|
|
position: relative;
|
|
|
|
}
|
|
|
|
|
2016-12-22 13:17:47 +03:00
|
|
|
#defaultExpireMessage, .reshare {
|
|
|
|
/* fix shared by text going out of box */
|
|
|
|
white-space: normal;
|
|
|
|
}
|
|
|
|
|
|
|
|
#defaultExpireMessage {
|
|
|
|
/* show message on new line */
|
|
|
|
display: block;
|
|
|
|
padding-left: 4px;
|
|
|
|
/* TODO: style the dropdown in a proper way - border-box, etc. */
|
|
|
|
width: 90%;
|
|
|
|
}
|
|
|
|
|
|
|
|
.ui-autocomplete {
|
|
|
|
/* limit dropdown height to 4 1/2 entries */
|
|
|
|
max-height: 200px;
|
|
|
|
overflow-y: auto;
|
|
|
|
overflow-x: hidden;
|
|
|
|
}
|
|
|
|
|
|
|
|
.notCreatable {
|
|
|
|
padding-left: 12px;
|
|
|
|
padding-top: 12px;
|
2017-02-19 21:50:21 +03:00
|
|
|
color: rgba($color-main-text, .4);
|
2016-12-22 13:17:47 +03:00
|
|
|
}
|
2017-03-27 23:03:10 +03:00
|
|
|
|
2017-04-24 12:39:03 +03:00
|
|
|
.contactsmenu-popover {
|
|
|
|
left: -8px;
|
|
|
|
right: auto;
|
|
|
|
padding: 3px 6px;
|
|
|
|
li.hidden {
|
|
|
|
display: none !important;
|
|
|
|
}
|
|
|
|
&:after {
|
|
|
|
left: 8px;
|
|
|
|
right: auto;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-03-27 23:03:10 +03:00
|
|
|
.popovermenu .datepicker {
|
|
|
|
margin-left: 35px;
|
|
|
|
}
|
2017-03-28 15:39:38 +03:00
|
|
|
|
|
|
|
.popovermenu .passwordField {
|
|
|
|
margin-left: 35px;
|
|
|
|
width: inherit !important;
|
|
|
|
}
|
|
|
|
|
2017-03-29 17:50:23 +03:00
|
|
|
.ui-datepicker {
|
|
|
|
z-index: 1111 !important;
|
|
|
|
}
|