diff options
author | Dirk Brenken <dev@brenken.org> | 2018-11-10 11:19:50 +0100 |
---|---|---|
committer | Dirk Brenken <dev@brenken.org> | 2018-11-10 11:19:50 +0100 |
commit | e50021f77fbc593cee841a02ad66c4bfea072f9e (patch) | |
tree | a768ced11497e719dd048965f86e43c30107d25b /applications/luci-app-banip/luasrc/view/banip/banip_css.htm | |
parent | 40de466475a617f42d1f5cfa03d0342676e84c9b (diff) |
luci-app-banip: new package
for details & LuCI screenshots see base package desprition/PR:
https://github.com/openwrt/packages/pull/7373
Signed-off-by: Dirk Brenken <dev@brenken.org>
Diffstat (limited to 'applications/luci-app-banip/luasrc/view/banip/banip_css.htm')
-rw-r--r-- | applications/luci-app-banip/luasrc/view/banip/banip_css.htm | 91 |
1 files changed, 91 insertions, 0 deletions
diff --git a/applications/luci-app-banip/luasrc/view/banip/banip_css.htm b/applications/luci-app-banip/luasrc/view/banip/banip_css.htm new file mode 100644 index 0000000000..807102452c --- /dev/null +++ b/applications/luci-app-banip/luasrc/view/banip/banip_css.htm @@ -0,0 +1,91 @@ +<style type="text/css"> + textarea + { + border: 1px solid #cccccc; + padding: 5px; + font-size: 12px; + font-family: monospace; + resize: none; + white-space: pre; + overflow-wrap: normal; + overflow-x: scroll; + } + + select[readonly], + textarea[readonly] + { + width: 100%; + height: 450px; + border: 1px solid #cccccc; + padding: 5px; + font-size: 12px; + font-family: monospace; + resize: none; + pointer-events: auto; + cursor: auto; + } + + .table.cbi-section-table .th, + .table.cbi-section-table .td, + .cbi-section-table-cell, + .cbi-section-table-row, + .tr[data-title]::before + { + text-align: left; + vertical-align: top; + margin-left: 0px; + padding-left: 2px; + } + + .table.cbi-section-table .th + { + white-space: nowrap; + } + + .cbi-section-table-row > .cbi-value-field .cbi-input-select, + .table.cbi-section-table select + { + width: 70px; + } + + .cbi-section-table-row > .cbi-value-field [data-dynlist] > input, + .table.cbi-section-table input[type="text"], + .cbi-dynlist > .item, + .table.cbi-section-table input + { + width: 6em; + } + + .cbi-input-checkbox + { + height: 1em; + } + + .cbi-input-text + { + text-align: left; + padding-left: 2px; + outline: none; + box-shadow: none; + background: transparent; + width: 4em; + } + + .runtime + { + color: #37c; + font-weight: bold; + display: inline-block; + width: 100%; + padding-top: 0.5rem; + } + + .ripe_desc + { + font-style: italic; + display: inline-block; + width: 100%; + height: 20px; + margin: 2px 2px; + } +</style> |