Better intergrate with Nextcloud #96

This commit is contained in:
the-djmaze 2022-10-13 12:00:17 +02:00
parent 46556931cc
commit c63366d0dc
3 changed files with 51 additions and 29 deletions

View file

@ -30,7 +30,8 @@ Then the below #rl-app can be used to style it.
#content[class*="app-"] #rl-app .select,
#content[class*="app-"] #rl-app textarea,
#content[class*="app-"] #rl-app input,
#content[class*="app-"] #rl-app .input-block-level
#content[class*="app-"] #rl-app .input-block-level,
#content[class*="app-"] #rl-app .icon-spinner
{
box-sizing: border-box;
}
@ -38,3 +39,28 @@ Then the below #rl-app can be used to style it.
min-width: 100%;
min-height: 100%;
}
#rl-app select,
#rl-app input
{
min-height: auto;
height: auto;
margin: 0;
padding: 3px;
}
#rl-app .form-horizontal .control-group > :not(label)
{
margin-left: 20px;
}
#rl-app .LoginView .fontastic + input {
padding-left: 30px;
}
@media print {
#body-user #header {
display: none;
}
#content {
padding-top: 0;
}
}