2015-07-15 18:35:35 +03:00
|
|
|
.app-files .shareTabView {
|
2015-08-04 16:47:43 +03:00
|
|
|
min-height: 100px;
|
2015-07-15 18:35:35 +03:00
|
|
|
}
|
2015-07-31 01:07:41 +03:00
|
|
|
|
2016-11-17 21:11:49 +03:00
|
|
|
.shareTabView .oneline {
|
|
|
|
white-space: nowrap;
|
|
|
|
position: relative;
|
|
|
|
}
|
2015-07-31 01:07:41 +03:00
|
|
|
|
|
|
|
.shareTabView .shareWithLoading {
|
|
|
|
padding-left: 10px;
|
2017-02-22 02:26:45 +03:00
|
|
|
right: 35px;
|
|
|
|
top: 0px;
|
2015-07-31 01:07:41 +03:00
|
|
|
}
|
|
|
|
|
2016-07-08 15:30:32 +03:00
|
|
|
.shareTabView .shareWithRemoteInfo,
|
2017-04-24 01:07:20 +03:00
|
|
|
.shareTabView .clipboardButton,
|
|
|
|
.shareTabView .linkPass .icon-loading-small {
|
2016-11-17 21:11:49 +03:00
|
|
|
position: absolute;
|
|
|
|
right: -7px;
|
2016-11-17 23:46:07 +03:00
|
|
|
top: -4px;
|
2016-11-17 21:11:49 +03:00
|
|
|
padding: 14px;
|
2015-07-31 01:07:41 +03:00
|
|
|
}
|
|
|
|
|
2017-03-03 15:27:06 +03:00
|
|
|
.shareTabView .linkMore {
|
|
|
|
position: absolute;
|
|
|
|
right: -7px;
|
|
|
|
top: -4px;
|
|
|
|
padding: 14px;
|
|
|
|
}
|
|
|
|
|
2017-03-15 07:50:32 +03:00
|
|
|
/* fix the popup menu because the button is shifted and then the menu is not aligned */
|
|
|
|
.shareTabView .popovermenu.socialSharingMenu {
|
|
|
|
right: -7px;
|
|
|
|
}
|
|
|
|
|
2017-03-03 15:27:06 +03:00
|
|
|
.shareTabView .popovermenu .clipboardButton {
|
|
|
|
position: relative;
|
2017-03-15 07:50:32 +03:00
|
|
|
top: initial;
|
|
|
|
right: initial;
|
|
|
|
padding: 18px 0 18px 36px;
|
2017-03-03 15:27:06 +03:00
|
|
|
}
|
|
|
|
|
2017-04-20 01:41:26 +03:00
|
|
|
/* fix clickable area because in the share tab popover the label is inside the actual menu item*/
|
|
|
|
#shareWithList .popovermenu .shareOption {
|
|
|
|
padding-right: 0 !important;
|
|
|
|
}
|
|
|
|
/* fix clickable area because in the share tab popover the label is inside the actual menu item*/
|
|
|
|
.shareTabView .popovermenu label {
|
|
|
|
width: 100%;
|
|
|
|
display: inline-block;
|
|
|
|
padding: 0 10px 0 0 !important;
|
|
|
|
}
|
|
|
|
|
2015-07-31 01:07:41 +03:00
|
|
|
.shareTabView label {
|
|
|
|
white-space: nowrap;
|
|
|
|
}
|
|
|
|
|
|
|
|
.shareTabView input[type="checkbox"] {
|
2015-09-17 14:17:56 +03:00
|
|
|
margin: 0 3px 0 8px;
|
2015-07-31 01:07:41 +03:00
|
|
|
vertical-align: middle;
|
|
|
|
}
|
|
|
|
|
2016-07-08 15:30:32 +03:00
|
|
|
.shareTabView input[type="text"].shareWithField,
|
2016-07-08 16:23:38 +03:00
|
|
|
.shareTabView input[type="text"].emailField,
|
2016-11-17 21:11:49 +03:00
|
|
|
.shareTabView input[type="text"].linkText,
|
|
|
|
.shareTabView input[type="password"] {
|
|
|
|
width: 100%;
|
|
|
|
box-sizing: border-box;
|
|
|
|
padding-right: 32px;
|
|
|
|
text-overflow: ellipsis;
|
2015-07-31 01:07:41 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
.shareTabView form {
|
|
|
|
font-size: 100%;
|
|
|
|
margin-left: 0;
|
|
|
|
margin-right: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
#shareWithList {
|
2015-09-17 14:17:56 +03:00
|
|
|
list-style-type: none;
|
|
|
|
padding: 0 0 16px;
|
2015-07-31 01:07:41 +03:00
|
|
|
}
|
|
|
|
|
2017-01-21 21:02:48 +03:00
|
|
|
#shareWithList > li {
|
2015-09-17 14:17:56 +03:00
|
|
|
padding-top: 5px;
|
|
|
|
padding-bottom: 5px;
|
2015-07-31 01:07:41 +03:00
|
|
|
white-space: normal;
|
2016-11-29 09:05:18 +03:00
|
|
|
display: inline-flex;
|
|
|
|
align-items: center;
|
2015-07-31 01:07:41 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
#shareWithList .unshare img, #shareWithList .showCruds img {
|
2016-11-15 14:52:22 +03:00
|
|
|
vertical-align: text-bottom; /* properly align icons */
|
2015-07-31 01:07:41 +03:00
|
|
|
}
|
|
|
|
|
2016-11-15 14:52:22 +03:00
|
|
|
#shareWithList .sharingOptionsGroup .icon-more {
|
|
|
|
padding: 7px;
|
|
|
|
vertical-align: middle;
|
|
|
|
opacity: .5;
|
2016-10-03 10:35:54 +03:00
|
|
|
}
|
|
|
|
|
2017-01-21 21:02:48 +03:00
|
|
|
#shareWithList .shareOption.menuitem > label:before {
|
|
|
|
/* Checkboxes positionning */
|
|
|
|
margin: 0 12px !important;
|
|
|
|
}
|
|
|
|
|
2016-10-29 17:32:15 +03:00
|
|
|
#shareWithList .unshare {
|
2016-12-02 19:44:35 +03:00
|
|
|
padding: 1px 6px;
|
2016-11-15 14:52:22 +03:00
|
|
|
vertical-align: text-bottom;
|
|
|
|
}
|
|
|
|
#shareWithList .unshare .icon {
|
|
|
|
vertical-align: text-top;
|
2016-10-29 17:32:15 +03:00
|
|
|
}
|
|
|
|
|
2016-12-02 19:52:40 +03:00
|
|
|
#shareWithList .sharingOptionsGroup .popovermenu:after {
|
|
|
|
right: 3px;
|
|
|
|
}
|
|
|
|
|
2016-11-15 14:52:22 +03:00
|
|
|
#shareWithList label input[type=checkbox] {
|
2015-07-31 01:07:41 +03:00
|
|
|
margin-left: 0;
|
|
|
|
position: relative;
|
|
|
|
}
|
2016-11-15 14:52:22 +03:00
|
|
|
#shareWithList .username {
|
2015-07-31 01:07:41 +03:00
|
|
|
padding-right: 8px;
|
|
|
|
white-space: nowrap;
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
display: inline-block;
|
|
|
|
overflow: hidden;
|
|
|
|
vertical-align: middle;
|
|
|
|
}
|
2017-01-21 21:02:48 +03:00
|
|
|
#shareWithList li .sharingOptionsGroup > .shareOption > label {
|
2016-11-15 14:52:22 +03:00
|
|
|
padding: 6px;
|
2015-07-31 01:07:41 +03:00
|
|
|
margin-right: 8px;
|
2016-11-15 14:52:22 +03:00
|
|
|
vertical-align: text-top;
|
2015-07-31 01:07:41 +03:00
|
|
|
}
|
2015-09-12 18:02:03 +03:00
|
|
|
|
|
|
|
.shareTabView .icon-loading-small {
|
2015-09-25 13:11:50 +03:00
|
|
|
display: inline-block;
|
|
|
|
z-index: 1;
|
2016-12-02 20:00:49 +03:00
|
|
|
margin-right: 4px;
|
|
|
|
vertical-align: text-top;
|
2015-10-16 16:54:27 +03:00
|
|
|
}
|
|
|
|
|
2016-12-02 20:00:49 +03:00
|
|
|
.shareTabView .shareWithList .icon-loading-small:not(.hidden) + span,
|
|
|
|
.shareTabView .linkShareView .icon-loading-small:not(.hidden) + input + label:before {
|
|
|
|
/* Hide if loader is visible */
|
|
|
|
display: none !important;
|
2015-10-16 16:54:27 +03:00
|
|
|
}
|
|
|
|
|
2016-10-18 20:43:18 +03:00
|
|
|
.linkShareView {
|
|
|
|
margin-top: 16px;
|
|
|
|
}
|
|
|
|
|
2015-10-16 16:54:27 +03:00
|
|
|
.shareTabView .linkPass .icon-loading-small {
|
2017-04-24 01:07:20 +03:00
|
|
|
margin-right: 0px;
|
2015-09-12 18:02:03 +03:00
|
|
|
}
|
2015-10-16 16:54:27 +03:00
|
|
|
|
2016-02-25 19:23:32 +03:00
|
|
|
.shareTabView .icon {
|
|
|
|
background-size: 16px 16px;
|
|
|
|
}
|