From 27fc49d74546d689307e1e712e0b46ccce98867b Mon Sep 17 00:00:00 2001 From: Eugen Rochko Date: Mon, 28 Nov 2016 18:45:13 +0100 Subject: Add simple admin overview of PuSH subscriptions --- app/assets/stylesheets/tables.scss | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 app/assets/stylesheets/tables.scss (limited to 'app/assets/stylesheets/tables.scss') diff --git a/app/assets/stylesheets/tables.scss b/app/assets/stylesheets/tables.scss new file mode 100644 index 000000000..89b35891d --- /dev/null +++ b/app/assets/stylesheets/tables.scss @@ -0,0 +1,25 @@ +.table { + width: 100%; + max-width: 100%; + border-spacing: 0; + border-collapse: collapse; + + th, td { + padding: 8px; + line-height: 1.42857143; + vertical-align: top; + border-top: 1px solid #ddd; + text-align: left; + } + + & > thead > tr > th { + vertical-align: bottom; + border-bottom: 2px solid #ddd; + border-top: 0; + font-weight: 500; + } +} + +samp { + font-family: 'Roboto Mono', monospace; +} -- cgit