mirror of
https://github.com/jhillyerd/inbucket.git
synced 2025-12-18 10:07:02 +00:00
Merge branch 'feature/padding' into develop
This commit is contained in:
@@ -1,3 +1,5 @@
|
||||
dist: bionic
|
||||
|
||||
env:
|
||||
global:
|
||||
- GO111MODULE=on
|
||||
@@ -16,7 +18,7 @@ jobs:
|
||||
elm: "latest-0.19.1"
|
||||
elm-format: "latest-0.19.1"
|
||||
elm-test: "latest-0.19.1"
|
||||
node_js: '10.19'
|
||||
node_js: "10.16.0"
|
||||
install:
|
||||
- "cd ui"
|
||||
- "npm ci"
|
||||
|
||||
@@ -69,7 +69,8 @@
|
||||
grid-gap: 1px 20px;
|
||||
grid:
|
||||
"ctrl mesg" auto
|
||||
"list mesg" 1fr / minmax(200px, 300px) minmax(650px, 1000px);
|
||||
"list mesg" 1fr
|
||||
/ minmax(200px, 300px) minmax(650px, auto);
|
||||
height: 100%;
|
||||
}
|
||||
|
||||
|
||||
@@ -115,24 +115,30 @@ a.button {
|
||||
display: grid;
|
||||
justify-content: center;
|
||||
grid-gap: 20px;
|
||||
grid-template:
|
||||
"lpad head rpad" auto
|
||||
"lpad page rpad" 1fr
|
||||
"foot foot foot" auto / minmax(20px, auto) 1fr minmax(20px, auto);
|
||||
height: 100vh;
|
||||
}
|
||||
|
||||
@media (max-width: 999px) {
|
||||
.app {
|
||||
grid-template:
|
||||
"head head head" auto
|
||||
"lpad page rpad" 1fr
|
||||
"foot foot foot" auto / 1px 1fr 1px;
|
||||
height: auto;
|
||||
}
|
||||
|
||||
.desktop {
|
||||
display: none;
|
||||
}
|
||||
|
||||
@media screen and (min-width: 1000px) {
|
||||
.app {
|
||||
grid-column-gap: 40px;
|
||||
grid-template:
|
||||
"lpad head rpad" auto
|
||||
"lpad page rpad" 1fr
|
||||
"foot foot foot" auto
|
||||
/ 1fr minmax(auto, 1300px) 1fr;
|
||||
height: 100vh;
|
||||
}
|
||||
|
||||
.desktop {
|
||||
display: none;
|
||||
td.desktop, th.desktop {
|
||||
display: table-cell;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
@@ -50,6 +50,12 @@
|
||||
padding: 12px 15px;
|
||||
}
|
||||
|
||||
.navbar-dropdown {
|
||||
overflow: hidden;
|
||||
text-overflow: ellipsis;
|
||||
white-space: nowrap;
|
||||
}
|
||||
|
||||
.navbar-dropdown-button {
|
||||
display: none;
|
||||
}
|
||||
@@ -71,6 +77,9 @@ li.navbar-active span,
|
||||
.navbar-dropdown-content a {
|
||||
color: var(--navbar-color) !important;
|
||||
display: block;
|
||||
overflow: hidden;
|
||||
text-overflow: ellipsis;
|
||||
white-space: nowrap;
|
||||
}
|
||||
|
||||
.navbar-dropdown-content a:hover {
|
||||
@@ -139,6 +148,7 @@ li.navbar-active span,
|
||||
|
||||
.navbar-dropdown {
|
||||
padding: 15px 19px 15px 25px;
|
||||
max-width: 350px;
|
||||
}
|
||||
|
||||
.navbar-dropdown-button {
|
||||
|
||||
Reference in New Issue
Block a user