diff options
| author | Patrick | 2025-12-30 17:05:51 +0100 |
|---|---|---|
| committer | Patrick | 2025-12-30 17:05:51 +0100 |
| commit | 250098015582c69a2ad91988bcc39d672ef92e48 (patch) | |
| tree | b085a6e230163dbcd98b923b898dd3bb093fd2c3 | |
| parent | 984e054e28eb8291da3cd4e9d2c20bfcb2223b60 (diff) | |
| download | ps-cgit-250098015582c69a2ad91988bcc39d672ef92e48.tar.gz ps-cgit-250098015582c69a2ad91988bcc39d672ef92e48.zip | |
css
| -rw-r--r-- | cgit.css | 4 | ||||
| -rw-r--r-- | cgithub/cgithub/cgithub.css | 10 | ||||
| -rw-r--r-- | cgithub/head-include.html | 7 |
3 files changed, 18 insertions, 3 deletions
@@ -102,7 +102,9 @@ div#cgit table.tabs td.form form { } div#cgit table.tabs td.form input, -div#cgit table.tabs td.form select { +div#cgit table.tabs td.form select +div#cgit button, +div#cgit input { font-size: 90%; } diff --git a/cgithub/cgithub/cgithub.css b/cgithub/cgithub/cgithub.css index e62eac2..d16b857 100644 --- a/cgithub/cgithub/cgithub.css +++ b/cgithub/cgithub/cgithub.css @@ -289,9 +289,12 @@ div#cgit table#header td.form form input, div#cgit table.tabs td.form select, div#cgit table.tabs td.form input, div#cgit div.cgit-panel td.ctrl select, -div#cgit div.cgit-panel td.ctrl input { +div#cgit div.cgit-panel td.ctrl input, +div#cgit button, +div#cgit input { border-radius: var(--border-radius); background-color: transparent; + box-sizing: border-box; height: var(--font-size-header); font-size: var(--font-size-small); vertical-align: middle; @@ -308,13 +311,16 @@ div#cgit table#header td.form form input { div#cgit table.tabs td.form select, div#cgit table.tabs td.form input, div#cgit div.cgit-panel td.ctrl select, -div#cgit div.cgit-panel td.ctrl input { +div#cgit div.cgit-panel td.ctrl input, +div#cgit input, +div#cgit button { color: var(--text-color); border: var(--border-color) 1px solid; background-color: var(--darker-bg-color); } div#cgit table#header td.form form select:focus, +div#cgit button:focus, div#cgit table#header td.form form input:focus, div#cgit table.tabs td.form select:focus, div#cgit table.tabs td.form input:focus, diff --git a/cgithub/head-include.html b/cgithub/head-include.html index df6e059..aa952f5 100644 --- a/cgithub/head-include.html +++ b/cgithub/head-include.html @@ -11,6 +11,13 @@ .tab-folder > :last-child, .tab-folder > .tab-content:target { display: block; } +.blob-hash { + width: 100%; + max-width: 1280px; + box-sizing: border-box; + margin: var(--content-v-margin) auto; + margin-top: 0; margin-bottom: 0; +} </style> |
