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

github.com/nextcloud/spreed.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/css
diff options
context:
space:
mode:
authorDaniel Calviño Sánchez <danxuliu@gmail.com>2019-08-27 13:53:30 +0300
committerDaniel Calviño Sánchez <danxuliu@gmail.com>2019-08-28 11:41:07 +0300
commitc61047a075d009ffa2bfbfa28c3cacb86b28b47a (patch)
treebffe230a28613745de5cd399fa4ed09b5bc2e2ac /css
parentbd56d8c0eaf00aae149f5bf298a91501726323c2 (diff)
Add input to set the lobby timer
Unfortunately the date picker component from Nextcloud only allows picking a date, but not a time; there is a date time picker for Vue, but integrating only that right now would require much effort. Therefore, for the time being, the start time needs to be introduced manually. Signed-off-by: Daniel Calviño Sánchez <danxuliu@gmail.com>
Diffstat (limited to 'css')
-rw-r--r--css/style.scss11
1 files changed, 6 insertions, 5 deletions
diff --git a/css/style.scss b/css/style.scss
index 899c5ef58..299b04b50 100644
--- a/css/style.scss
+++ b/css/style.scss
@@ -1074,23 +1074,24 @@ body:not(#body-public) .participantWithList > li > span:not(.currentUser):not(.g
}
}
- .menuitem.password-option {
+ .menuitem.password-option,
+ .menuitem.lobby-timer-option {
/* Override rule for menu items from server, as in this case
* only the button in the password field is clickable, so the
* pointer cursor should not be used for the whole item. */
cursor: default;
- .password-form {
+ form {
position: relative;
- .password-confirm,
- .password-loading {
+ .icon-confirm,
+ .icon-loading-small {
/* Inputs in menu items do not have a right margin, so
* it does not need to be compensated. */
right: 0;
}
- .password-confirm {
+ .icon-confirm {
/* Needed to override an important rule set in the
* server. */
background-color: transparent !important;