Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix DOM problems and styling #164

Closed
wants to merge 30 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
30 commits
Select commit Hold shift + click to select a range
886465e
[tx-robot] updated from transifex
nextcloud-bot Jan 18, 2020
0da376c
[tx-robot] updated from transifex
nextcloud-bot Jan 19, 2020
04b37ff
[tx-robot] updated from transifex
nextcloud-bot Jan 21, 2020
eb36a72
Update version on master
nickvergessen Jan 20, 2020
9fbe064
[tx-robot] updated from transifex
nextcloud-bot Jan 29, 2020
2a13cd5
[tx-robot] updated from transifex
nextcloud-bot Feb 1, 2020
c3f7769
[tx-robot] updated from transifex
nextcloud-bot Feb 4, 2020
ee1e59e
[tx-robot] updated from transifex
nextcloud-bot Feb 5, 2020
44f0308
[tx-robot] updated from transifex
nextcloud-bot Feb 6, 2020
68b41ad
[tx-robot] updated from transifex
nextcloud-bot Feb 20, 2020
a22c5da
[tx-robot] updated from transifex
nextcloud-bot Feb 26, 2020
218add9
Enqueue next update after the last update is done
kesselb Feb 25, 2020
6b3994d
Avoid line breaks after long device names
mikoMK Feb 26, 2020
6195980
Do not print errors if time server config is not available
juliushaertl Mar 3, 2020
799760a
[tx-robot] updated from transifex
nextcloud-bot Mar 6, 2020
3dd4373
reseted fork to upstream/master and applied patch gracefully provided…
LordSimal Dec 19, 2019
114a7e8
fix code indention + convert snake case variabs to camelCase
LordSimal Dec 19, 2019
ec50d60
Revert changes to .gitignore and settings-admin.php
kesselb Jan 1, 2020
a49d657
Revert more whitespace in settings-admin.php
kesselb Jan 1, 2020
9df4383
Put the info text below the input.
kesselb Jan 2, 2020
91ad213
renamed style.css to style.scss and added -mobile variable for media …
LordSimal Feb 8, 2020
7adb7ca
removed custom svg icons and added nextcloud core icons to section he…
LordSimal Feb 24, 2020
579ef6a
reseted fork to upstream/master and applied patch gracefully provided…
LordSimal Dec 19, 2019
00b1fd7
fix code indention + convert snake case variabs to camelCase
LordSimal Dec 19, 2019
b7bc32e
Revert changes to .gitignore and settings-admin.php
kesselb Jan 1, 2020
30fc66f
Revert more whitespace in settings-admin.php
kesselb Jan 1, 2020
88bb1a4
Put the info text below the input.
kesselb Jan 2, 2020
a7e9b0e
renamed style.css to style.scss and added -mobile variable for media …
LordSimal Feb 8, 2020
d105cc2
removed custom svg icons and added nextcloud core icons to section he…
LordSimal Feb 24, 2020
e391ed3
Merge branch 'master' into master
LordSimal Mar 13, 2020
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
*~
\#*
\#*
123 changes: 0 additions & 123 deletions css/style.css

This file was deleted.

246 changes: 246 additions & 0 deletions css/style.scss
Original file line number Diff line number Diff line change
@@ -0,0 +1,246 @@
.server-info-wrapper {
max-width: 100vw;
}

.table-wrapper {
overflow-x: auto;
}

.server-infos-table {
margin-bottom: 25px;
}

.server-infos-table td:first-child {
width: 120px;
}

.monitoring-wrapper {
display: -webkit-flex;
display: flex;
}

.monitoring-wrapper > input {
flex: 1 0 auto;
}

.monitoring-wrapper + .settings-hint {
margin-top: 0;
}

.rambox {
height: 10px;
width: 10px;
background-color: #555;
}

.swapbox {
height: 10px;
width: 10px;
background-color: #222;
}

.info {
font-weight: bold;
color: #777;
}

.smallinfo {
color: #888;
font-size: 11px;
}

.infobox {
display: flex;
flex-wrap: nowrap;
align-items: center;

border: 1px solid #ddd;
padding: 15px;
margin: 15px 0;
color: #555;
background-color: #f9f9f9;
border-radius: 6px;
box-shadow: 1px 1px 9px 1px #eee;
}

.diskchart-container {
width: 100px;
border: 1px black;
}

@media only screen and (max-width: $breakpoint-mobile){
.infobox {
display: block;
text-align: center;
}
.diskchart-container {
margin: 0 auto;
}
}

.diskinfo-container {
flex: 1 0 auto;
}

.infobox h2 {
color: #555;
font-size: 18px;
font-weight: bold;
padding: 5px;
margin: 0;
}

.infobox h3 {
color: #555;
font-size: 22px;
font-weight: bold;
padding: 5px 0 10px 0;
margin: 0;
}

.infoicon {
width: 28px;
float: left;
padding: 5px;
}

.chart-container {
position: relative;
margin: 10px;
}

.clipboardButton {
display: inline-block;
position: relative;
top: 2px;
margin-left: 5px;
}

/* GRID SYSTEM */

.row {
display: -webkit-flex;
display: flex;
flex: 0 1 auto;
flex-direction: row;
flex-wrap: wrap;
margin-left: -15px;
margin-right: -15px;
}

.col {
flex-grow: 1;
flex-basis: 0;
max-width: 100%;
padding-left: 15px;
padding-right: 15px;
}

.col-1 {
flex-basis: 8.333%;
max-width: 8.333%;
min-width: 8.333%;
}

.col-2 {
flex-basis: 16.666%;
max-width: 16.666%;
min-width: 16.666%;
}

.col-3 {
flex-basis: 25%;
max-width: 25%;
min-width: 25%;
}

.col-4 {
flex-basis: 33.333%;
max-width: 33.333%;
min-width: 33.333%;
}

.col-5 {
flex-basis: 41.666%;
max-width: 41.666%;
min-width: 41.666%;
}

.col-6 {
flex-basis: 50%;
max-width: 50%;
min-width: 50%;
}

.col-7 {
flex-basis: 58.333%;
max-width: 58.333%;
min-width: 58.333%;
}

.col-8 {
flex-basis: 66.666%;
max-width: 66.666%;
min-width: 66.666%;
}

.col-9 {
flex-basis: 75%;
max-width: 75%;
min-width: 75%;
}

.col-10 {
flex-basis: 83.333%;
max-width: 83.333%;
min-width: 83.333%;
}

.col-11 {
flex-basis: 91.666%;
max-width: 91.666%;
min-width: 91.666%;
}

.col-12 {
flex-basis: 100%;
max-width: 100%;
min-width: 100%;
}


@media only screen and (max-width: 1200px) {
.col-xl-6 {
flex-basis: 50%;
max-width: 50%;
min-width: 50%;
}
}

@media only screen and (max-width: 1024px) {
.col-l-6 {
flex-basis: 50%;
max-width: 50%;
min-width: 50%;
}

.col-l-12 {
flex-basis: 100%;
max-width: 100%;
min-width: 100%;
}
}

@media only screen and (max-width: $breakpoint-mobile) {
.col-m-6 {
flex-basis: 50%;
max-width: 50%;
min-width: 50%;
}

.col-m-12 {
flex-basis: 100%;
max-width: 100%;
min-width: 100%;
}
}
3 changes: 0 additions & 3 deletions img/hdd-o.svg

This file was deleted.

3 changes: 0 additions & 3 deletions img/server.svg

This file was deleted.

3 changes: 0 additions & 3 deletions img/sort.svg

This file was deleted.

Loading