Better Nextcloud integration with notification sounds #96

This commit is contained in:
the-djmaze 2022-10-13 12:46:33 +02:00
parent 1b3d6401f3
commit 99b84af7b5
3 changed files with 23 additions and 2 deletions

View file

@ -68,7 +68,7 @@ export const
* @param {string} path * @param {string} path
* @returns {string} * @returns {string}
*/ */
staticLink = path => VERSION_PREFIX + 'static/' + path, staticLink = path => Settings.app('webPath') + VERSION_PREFIX + 'static/' + path,
/** /**
* @param {string} theme * @param {string} theme

View file

@ -49,7 +49,8 @@
background-image: linear-gradient(to bottom, #f4f4f4, #dfdfdf) !important; background-image: linear-gradient(to bottom, #f4f4f4, #dfdfdf) !important;
background-repeat: repeat-x !important; background-repeat: repeat-x !important;
} }
#V-AdminPane > .b-toolbar { #V-AdminPane > .b-toolbar,
#V-PopupsCompose header {
background-color: #0082c9; background-color: #0082c9;
background-image: linear-gradient(40deg, #0082c9 0%, #30b6ff 100%); background-image: linear-gradient(40deg, #0082c9 0%, #30b6ff 100%);
color: #fff; color: #fff;

View file

@ -48,6 +48,12 @@ Then the below #rl-app can be used to style it.
margin: 0; margin: 0;
padding: 3px; padding: 3px;
} }
button.btn:not(.button-vue) {
min-height: auto;
height: auto;
margin: 0;
padding: 4px 12px;
}
#rl-app .form-horizontal .control-group > :not(label) #rl-app .form-horizontal .control-group > :not(label)
{ {
margin-left: 20px; margin-left: 20px;
@ -60,6 +66,20 @@ Then the below #rl-app can be used to style it.
display: none; display: none;
} }
#rl-app .squire-plain, #rl-app .squire-wysiwyg {
box-sizing: border-box;
font-size: 13px;
height: 100%;
line-height: 16px;
min-height: 200px;
}
#V-PopupsCompose header {
background-color: var(--color-primary);
background-image: linear-gradient(40deg, #0082c9 0%, #30b6ff 100%);
color: #fff;
}
#appmenu { #appmenu {
margin: 0; margin: 0;
} }