Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
O
our_own_cloud_project
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Model registry
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
GitLab community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
die_coolen_jungs
our_own_cloud_project
Commits
9b1c4a1e
Commit
9b1c4a1e
authored
Aug 29, 2014
by
jbtbnl
Browse files
Options
Downloads
Plain Diff
Merge pull request #10738 from owncloud/fix-quotabar-width
Fix quota bar width, and indicate almost full storage
parents
35276def
0aede0f4
Branches
Branches containing commit
No related tags found
No related merge requests found
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
core/css/styles.css
+8
-1
8 additions, 1 deletion
core/css/styles.css
settings/templates/personal.php
+2
-1
2 additions, 1 deletion
settings/templates/personal.php
with
10 additions
and
2 deletions
core/css/styles.css
+
8
−
1
View file @
9b1c4a1e
...
...
@@ -736,9 +736,16 @@ code { font-family:"Lucida Console", "Lucida Sans Typewriter", "DejaVu Sans Mono
font-weight
:
normal
;
white-space
:
nowrap
;
border-bottom-left-radius
:
3px
;
border-top-left-radius
:
3px
;
}
border-top-left-radius
:
3px
;
min-width
:
1%
;
max-width
:
100%
;
}
#quotatext
{
padding
:
.6em
1em
;}
#quota
div
.quota-warning
{
background-color
:
#fc4
;
}
.pager
{
list-style
:
none
;
float
:
right
;
display
:
inline
;
margin
:
.7em
13em
0
0
;
}
.pager
li
{
display
:
inline-block
;
}
...
...
This diff is collapsed.
Click to expand it.
settings/templates/personal.php
+
2
−
1
View file @
9b1c4a1e
...
...
@@ -34,7 +34,8 @@
<div
id=
"quota"
class=
"section"
>
<div
style=
"width:
<?php
p
(
$_
[
'usage_relative'
]);
?>
%;"
>
<div
style=
"width:
<?php
p
(
$_
[
'usage_relative'
]);
?>
%"
<?php
if
(
$_
[
'usage_relative'
]
>
80
)
:
?>
class=
"quota-warning"
<?php
endif
;
?>
>
<p
id=
"quotatext"
>
<?php
print_unescaped
(
$l
->
t
(
'You have used <strong>%s</strong> of the available <strong>%s</strong>'
,
array
(
$_
[
'usage'
],
$_
[
'total_space'
])));
?>
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment