File modules/cms/ui/themes/default/style/openrat-components.css
Last commit: Sun Jan 5 23:14:07 2025 +0100 Jan Dankert New UI feature: Show a timeline in the start page.
1 /* Importing component-specific CSS */ 2 .editor__text-editor { 3 width: 100%; 4 height: 300px; 5 } 6 /* ACE-Editor */ 7 textarea.editor__code-editor { 8 display: none; 9 /* Textarea nicht anzeigen, da durch Editor im DIV ersetzt */ 10 } 11 div.editor__code-editor { 12 position: absolute; 13 height: 500px; 14 width: 100%; 15 font-size: 14px; 16 z-index: 256; 17 } 18 textarea.editor__text-editor, 19 textarea.editor__wiki-editor, 20 textarea.editor__html-editor { 21 width: 100%; 22 } 23 a.editorlink:active, 24 a.editorlink:hover { 25 font-weight: normal; 26 text-decoration: none; 27 } 28 a.editorlink:link, 29 a.editorlink:visited { 30 font-weight: normal; 31 text-decoration: none; 32 } 33 .or-table { 34 overflow: auto; 35 border: 2px; 36 width: 100%; 37 table-layout: fixed; 38 /* Hilfe-Texte */ 39 } 40 .or-table.or-timeline-chart td { 41 writing-mode: vertical-lr; 42 direction: rtl; 43 font-size: 0.5em; 44 vertical-align: bottom; 45 } 46 .or-table.or-timeline-chart td * { 47 background-color: var(--cms-image-color); 48 } 49 .or-table-column-date { 50 width: 12em; 51 } 52 .or-table-column-user { 53 width: 7em; 54 } 55 .or-table-column-action { 56 width: 5em; 57 } 58 .or-table-column-auto { 59 width: auto; 60 max-width: 0; 61 } 62 .or-table-area { 63 /* Responsive Tables */ 64 } 65 @media screen and (max-width: 40em) { 66 .or-table-area { 67 overflow-x: auto; 68 } 69 } 70 .or-table-filter { 71 width: 100%; 72 text-align: right; 73 } 74 .or-table-filter-input { 75 border-radius: 3px; 76 -moz-border-radius: 3px; 77 -webkit-border-radius: 3px; 78 -khtml-border-radius: 3px; 79 padding: 0.3em; 80 margin: 0 1em; 81 border: 1px solid #000000; 82 width: 7.5em; 83 } 84 .or-table tr.or-headline > td, 85 .or-table tr { 86 padding: 0.3em; 87 } 88 .or-table tr.or-headline > td .or-row--on-hover, 89 .or-table tr .or-row--on-hover { 90 visibility: hidden; 91 } 92 @media only screen and (max-width: 55rem) { 93 .or-table tr.or-headline > td .or-row--on-hover, 94 .or-table tr .or-row--on-hover { 95 visibility: visible; 96 } 97 } 98 .or-table tr.or-headline > td:hover .or-row--on-hover, 99 .or-table tr:hover .or-row--on-hover { 100 visibility: visible; 101 } 102 .or-table tr > th { 103 padding: 3px; 104 font-weight: bold; 105 } 106 .or-table tr > th.or-sort-asc > span:last-child:after { 107 content: " \2193"; 108 } 109 .or-table tr > th.or-sort-desc > span:last-child:after { 110 content: " \2191"; 111 } 112 .or-table tr.or-data > td { 113 padding: 3px; 114 } 115 .or-table tr > td { 116 white-space: nowrap; 117 text-overflow: ellipsis; 118 overflow: hidden; 119 } 120 .or-table td.or-readonly { 121 font-style: italic; 122 font-weight: normal; 123 } 124 .or-table td.or-default { 125 font-style: normal; 126 font-weight: normal; 127 } 128 .or-table td.or-changed { 129 font-style: normal; 130 font-weight: bold; 131 } 132 .or-table td:hover > div.or-onrowvisible { 133 visibility: visible; 134 } 135 .or-table tr td.or-help { 136 font-style: italic; 137 } 138 .or-table tr.or-headline td.or-help { 139 /* 140 border-bottom:1px solid @color-overridden-by-theme; 141 */ 142 font-style: normal; 143 } 144 .or-table-sort-value { 145 display: none; 146 } 147 div.or-dropzone-upload { 148 width: 100%; 149 height: 100px; 150 border: 1px dotted; 151 } 152 .or-group { 153 margin: 1em 0 4em; 154 } 155 .or-group-title { 156 margin: 0.5em 0; 157 font-size: 1.1em; 158 font-weight: normal; 159 } 160 .or-group-value { 161 border-radius: 0.3em; 162 padding: 1em; 163 } 164
Downloadmodules/cms/ui/themes/default/style/openrat-components.css
History Sun, 5 Jan 2025 23:14:07 +0100 Jan Dankert New UI feature: Show a timeline in the start page. Thu, 26 Dec 2024 19:53:54 +0100 Jan Dankert The ThemeStyle is now able to mix colors and all colors are now internally hold as RGB; New Group background colors in the UI. Fri, 6 Dec 2024 23:29:56 +0100 Jan Dankert UI: Cleaner profile dialog in navigation menu. Sun, 13 Oct 2024 13:17:32 +0200 Jan Dankert New Minifier for CSS and JS: Leave JS Linebreaks as they are (for better debugging); Exploded CSS files (instead of a combined one), LESS is necessary but should be avoided in the future.