X-Git-Url: https://git.cweiske.de/grauphel.git/blobdiff_plain/497af90eabe1e4a89c1ecfe0ebb9c874dd67b648..272bb16b2d434090008d0759e10ff28bab96cb51:/grauphel.css diff --git a/grauphel.css b/grauphel.css index 37360db..0cddce6 100644 --- a/grauphel.css +++ b/grauphel.css @@ -1,5 +1,7 @@ .app-grauphel #app-content { box-sizing: border-box; +} +.app-grauphel #app-content.content { padding: 2ex; } @@ -8,6 +10,13 @@ font-size: 2em; margin-bottom: 1ex; } +.app-grauphel #app-content.list h1 { + padding: 1ex; +} +.app-grauphel #app-content.list > p { + margin: 2ex; +} + .app-grauphel #app-content h2 { font-weight: bold; font-size: 150%; @@ -26,6 +35,9 @@ padding: 1ex; font-family: monospace; } +.app-grauphel #app-content blockquote { + margin-left: 2ex; +} .app-grauphel #app-content ul { list-style-type: disc; @@ -37,3 +49,145 @@ .app-grauphel #app-content a.lined { text-decoration: underline; } + +.app-grauphel #app-content .error { + color: red; +} +.app-grauphel #app-content .success { + color: green; +} +.app-grauphel #app-content .error a { + color: red !important; +} + +.app-grauphel #app-content .actions { + float: right; +} +.app-grauphel #app-content .actions a { + color: #555; + padding: 14px 10px; + position: relative; + top: 7px; + min-width: 25px; + padding: 5px; + background-color: rgba(240,240,240,.9); +} + +.app-grauphel .oauth-authorize { + margin: 2ex; + text-align: center; +} +.app-grauphel .msg { + padding: 2ex; +} +.app-grauphel .buttons { + margin-top: 2ex; + text-align: center; +} + + +/* table style */ + +table.table { + position: relative; + width: 100%; +} + +/* make sure there's enough room for the file actions */ +#body-user table.table { + min-width: 688px; /* 768 (mobile break) - 80 (nav width) */ +} + +table.table tbody tr { background-color:#fff; height:51px; } + +/* fit app list view heights */ +/* +.app-files #app-content>.viewcontainer { + min-height: 100%; +}*/ + +table.table tbody tr { background-color:#fff; height:40px; } +table.table tbody tr:hover, tbody tr:active { + background-color: rgb(240,240,240); +} +table.table tbody tr.selected { + background-color: rgb(230,230,230); +} +table.table tbody tr.searchresult { + background-color: rgb(240,240,240); +} +table.table tbody a { color:#000; } + +table.table tr.mouseOver td { + background-color: #eee; +} +table.table th, table th a { + color: #999; +} +table.table thead th { + background-color: white; + padding: 15px; + height: 50px; + box-sizing: border-box; + vertical-align: middle; +} + +table.table th, table.table td { + border-bottom:1px solid #ddd; + text-align:left; + font-weight:normal; +} +table.table td { + padding: 0 15px; + border-bottom: 1px solid #eee; + font-style: normal; + background-position: 8px center; + background-repeat: no-repeat; +} + +a.action.delete, table.table form button.action.delete { + position: absolute; + right: 0px; + padding: 17px 14px; + padding: 3px 14px; +} +a.action { + line-height: 30px; +} +a.cellclick { + display: block; +} +table.table form { + display: inline; +} +table.table form button.action { + border: none; + background-color: transparent; +} + +.muted { + color: #999; +} + +.note-content { + padding-top: 2ex; +} + +.note-content .strikethrough { + text-decoration: line-through; +} +.note-content .highlight { + background-color: yellow; +} +.note-content .small { + font-size: 80%; +} +.note-content .large { + font-size: 150%; +} +.note-content .huge { + font-size: 200%; +} +.note-content a { + text-decoration: underline; +} \ No newline at end of file