mirror of
https://github.com/nextcloud/all-in-one.git
synced 2025-11-10 06:00:37 +08:00
Merge pull request #5007 from nextcloud/enn/4955/adjust-design
aio-interface: adjust design for nc30
This commit is contained in:
commit
5318d66d6d
3 changed files with 45 additions and 27 deletions
BIN
php/public/img/Background_Light.jpg
Normal file
BIN
php/public/img/Background_Light.jpg
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 661 KiB |
Binary file not shown.
|
Before Width: | Height: | Size: 9.4 KiB |
|
|
@ -11,24 +11,23 @@ a {
|
|||
|
||||
a.button,
|
||||
input[type="submit"] {
|
||||
padding: 6px 16px;
|
||||
padding: 8px 16px;
|
||||
width: auto;
|
||||
min-height: 34px;
|
||||
height: 34px;
|
||||
cursor: pointer;
|
||||
background-color: #0082c9;
|
||||
font-weight: bold;
|
||||
border-radius: 100px;
|
||||
border-radius: 8px;
|
||||
margin: 3px 3px 3px 0;
|
||||
font-size: 13px;
|
||||
font-size: 14px;
|
||||
color: white;
|
||||
border: 1px solid black;
|
||||
border: .5px solid black;
|
||||
outline: none;
|
||||
}
|
||||
|
||||
a.button:focus,
|
||||
input[type="submit"]:focus {
|
||||
color: black;
|
||||
border: 2px solid black;
|
||||
border: 1px solid black;
|
||||
}
|
||||
|
||||
summary {
|
||||
|
|
@ -97,7 +96,7 @@ div.toast {
|
|||
top: 50%;
|
||||
left: 50%;
|
||||
transform: translate(-50%, -50%);
|
||||
border-radius: 16px;
|
||||
border-radius: 12px;
|
||||
}
|
||||
|
||||
.login > .monospace {
|
||||
|
|
@ -109,14 +108,32 @@ form {
|
|||
margin: 0;
|
||||
}
|
||||
|
||||
input {
|
||||
padding: 10px;
|
||||
margin-top: 15px;
|
||||
input[type="text"],
|
||||
input[type="password"],
|
||||
select {
|
||||
padding-left: 8px;
|
||||
padding-right: 8px;
|
||||
height: 34px;
|
||||
margin-bottom: 15px;
|
||||
border-radius: 8px;
|
||||
border: .5px solid black;
|
||||
}
|
||||
|
||||
textarea {
|
||||
border-radius: 8px;
|
||||
border: .5px solid black;
|
||||
}
|
||||
|
||||
input[type="text"]:focus,
|
||||
input[type="password"]:focus,
|
||||
textarea:focus,
|
||||
select:focus {
|
||||
border: 1px solid black;
|
||||
}
|
||||
|
||||
.login > form > input[type="password"],
|
||||
.login > form > input[type="text"] {
|
||||
.login > form > input[type="text"],
|
||||
.login > form > input[type="submit"] {
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
|
|
@ -126,28 +143,25 @@ input {
|
|||
display: block;
|
||||
}
|
||||
|
||||
.login > a.button ,
|
||||
.login > input[type="submit"] {
|
||||
.login a.button,
|
||||
.login input[type="submit"] {
|
||||
margin-left: auto;
|
||||
margin-right: auto;
|
||||
display: block;
|
||||
text-align: center;
|
||||
line-height: 33px;
|
||||
margin-top: 20px;
|
||||
}
|
||||
|
||||
.login-wrapper {
|
||||
height: 100%;
|
||||
width: 100%;
|
||||
background-color: #0082c9;
|
||||
background-image: linear-gradient(
|
||||
40deg
|
||||
, #0082c9 0%, #30b6ff 100%);
|
||||
background-size: contain;
|
||||
background-image: url('/img/background.png'), linear-gradient(
|
||||
40deg
|
||||
, #0082c9 0%, #30b6ff 100%);
|
||||
position: relative;
|
||||
min-height: 100dvh;
|
||||
min-width: 100vw;
|
||||
position: fixed;
|
||||
width: 100vw;
|
||||
height: auto;
|
||||
background-image: url("img/Background_Light.jpg");
|
||||
|
||||
background-position: center;
|
||||
background-repeat: no-repeat;
|
||||
background-size: cover;
|
||||
}
|
||||
|
||||
main {
|
||||
|
|
@ -181,6 +195,10 @@ header {
|
|||
display: flex;
|
||||
}
|
||||
|
||||
header > form {
|
||||
margin: 0 8px;
|
||||
}
|
||||
|
||||
.loading {
|
||||
color: grey;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue