diff options
author | adam <adam@> | 2021-02-14 10:00:18 +0200 |
---|---|---|
committer | adam <adam@> | 2021-02-14 10:00:18 +0200 |
commit | 5498ae0a8f7130369a3d0471822a376ce8324a22 (patch) | |
tree | edcb55bc8aee9444ad1488a4a962d87713035166 /css | |
parent | a3b6210ac043e2fdeb20d48d464e3a1466f388b4 (diff) | |
parent | 379d7db3628a46889ae52d69296e2a8a610d32b4 (diff) | |
download | fileup-5498ae0a8f7130369a3d0471822a376ce8324a22.tar.gz |
Merge https://github.com/alexvitkov/india
Diffstat (limited to 'css')
-rw-r--r-- | css/style.css | 18 |
1 files changed, 15 insertions, 3 deletions
diff --git a/css/style.css b/css/style.css index 407cc5f..619c4d8 100644 --- a/css/style.css +++ b/css/style.css @@ -297,12 +297,12 @@ input[type=submit]:hover { border-color: black; } -.foldercontents, .filecontents { +.foldercontents, .filecontents, .filecontentsroot { background: rgba(250, 250, 250, .9); flex: 1 0 0; } -.filecontents { +.filecontents, .filecontentsroot { background: white; } @@ -403,7 +403,11 @@ input[type=submit]:hover { align-self: center; } -.pathentry:hover { +.pathentry:last-child { + cursor: inherit; +} + +.pathentry:not(:last-child):hover { text-decoration: underline; } @@ -453,3 +457,11 @@ input[type=submit]:hover { background: white; background: rgba(255,255,255, 0.9); } + +.window > h2 .close_button { + border-left: 1px solid #ccc; +} + +.close_button:hover { + background: white; +} |