forked from nextcloud/nextcloud-filelink
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'Release-3.4' into 'master'
Release 3.4 Closes nextcloud#70, nextcloud#71, and nextcloud#79 See merge request joendres/filelink-nextcloud!47
- Loading branch information
Showing
23 changed files
with
995 additions
and
293 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
1 change: 1 addition & 0 deletions
1
...spane/images/checkbox-check-16-grey-10-a90-c3eedd2deb938aa0ec2b5353c1e4bdca.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,105 +1,104 @@ | ||
body.busy * { | ||
cursor: progress; | ||
/* Fix problems in the official css */ | ||
|
||
body { | ||
font-family: -apple-system, BlinkMacSystemFont, 'helvetica neue', ubuntu, roboto, noto, 'segoe ui', helvetica, arial, sans-serif; | ||
} | ||
|
||
* { | ||
box-sizing: border-box; | ||
.input__field, .input__field::placeholder { | ||
font-size: inherit; | ||
} | ||
|
||
/* show the turning wheel cursor while the dialog is busy */ | ||
|
||
body.busy * { | ||
cursor: progress; | ||
} | ||
|
||
/* Header elements */ | ||
|
||
#header::after { | ||
content: ""; | ||
clear: both; | ||
display: table; | ||
} | ||
|
||
h2 { | ||
overflow: hidden; | ||
white-space: nowrap; | ||
text-overflow: ellipsis; | ||
margin: 0; | ||
} | ||
|
||
#logo { | ||
#cloud_info { | ||
float: right; | ||
height: 32px; | ||
text-align: right; | ||
margin-left: 8px; | ||
} | ||
|
||
#cloud_info #logo { | ||
height: 36px; | ||
} | ||
|
||
/* Free space display */ | ||
|
||
#freespaceGauge { | ||
margin-top: 4px; | ||
display: flex; | ||
align-items: center; | ||
white-space: nowrap; | ||
visibility: hidden; | ||
} | ||
|
||
meter { | ||
width: 100%; | ||
margin-left: .5em; | ||
} | ||
|
||
meter:-moz-meter-optimum::-moz-meter-bar { | ||
background: #30e60b; | ||
background: var(--green-50); | ||
} | ||
|
||
meter:-moz-meter-sub-optimum::-moz-meter-bar { | ||
background: #ffe900; | ||
background: var(--yellow-50); | ||
} | ||
|
||
meter:-moz-meter-sub-sub-optimum::-moz-meter-bar { | ||
background: #ff0039; | ||
background: var(--red-50); | ||
} | ||
|
||
meter { | ||
width: 100%; | ||
margin-left: 8px; | ||
height: 16px; | ||
background: #d7d7db; | ||
background: var(--grey-30); | ||
} | ||
|
||
/* Message bar */ | ||
/* Account form elements */ | ||
|
||
#msg_container { | ||
/* functional */ | ||
/* visibility: hidden; */ | ||
z-index: 1; | ||
position: absolute; | ||
top: 9%; | ||
/* Fit into frame */ | ||
width: 97%; | ||
input[type=number] { | ||
max-width: 4em; | ||
text-align: right; | ||
} | ||
|
||
#msg_container .msg_bar { | ||
margin-bottom: 4px; | ||
#resetButton { | ||
float: right; | ||
} | ||
|
||
/* Account form elements */ | ||
/* Help button */ | ||
|
||
input { | ||
width: 100%; | ||
} | ||
|
||
input[type=number] { | ||
max-width: 4em; | ||
text-align: right; | ||
padding-right: 0; | ||
.input__label { | ||
/* photon defines it as block which makes it overlap the help button and take its hover event */ | ||
display: inline; | ||
} | ||
|
||
.helpbutton { | ||
float: right; | ||
margin-right: 2px; | ||
} | ||
|
||
.helpbutton p { | ||
visibility: hidden; | ||
width: 50%; | ||
position: absolute; | ||
z-index: 1; | ||
right: 0.2em; | ||
top: 0.5em; | ||
width: 50%; | ||
right: 0; | ||
} | ||
|
||
.helpbutton:hover p { | ||
visibility: visible; | ||
} | ||
|
||
fieldset { | ||
position: relative; | ||
border: none; | ||
padding-left: 0; | ||
padding-right: 0; | ||
} | ||
|
||
#resetButton { | ||
float: right; | ||
} |
Oops, something went wrong.