FossilRepo

fossilrepo / assets / import_export / import.css
Source Blame History 159 lines
afe42d0… ragelink 1 .import-preview .errors {
afe42d0… ragelink 2 position: relative;
afe42d0… ragelink 3 }
afe42d0… ragelink 4
afe42d0… ragelink 5 .validation-error-count {
afe42d0… ragelink 6 display: inline-block;
afe42d0… ragelink 7 background-color: #e40000;
afe42d0… ragelink 8 border-radius: 6px;
afe42d0… ragelink 9 color: white;
afe42d0… ragelink 10 font-size: 0.9em;
afe42d0… ragelink 11 position: relative;
afe42d0… ragelink 12 font-weight: bold;
afe42d0… ragelink 13 margin-top: -2px;
afe42d0… ragelink 14 padding: 0.2em 0.4em;
afe42d0… ragelink 15 }
afe42d0… ragelink 16
afe42d0… ragelink 17 .validation-error-container {
afe42d0… ragelink 18 position: absolute;
afe42d0… ragelink 19 opacity: 0;
afe42d0… ragelink 20 pointer-events: none;
afe42d0… ragelink 21 background-color: #ffc1c1;
afe42d0… ragelink 22 padding: 14px 15px 10px;
afe42d0… ragelink 23 top: 25px;
afe42d0… ragelink 24 margin: 0 0 20px 0;
afe42d0… ragelink 25 width: 200px;
afe42d0… ragelink 26 z-index: 2;
afe42d0… ragelink 27 }
afe42d0… ragelink 28
afe42d0… ragelink 29 html[data-theme="light"] .validation-error-container {
afe42d0… ragelink 30 background-color: #ffc1c1;
afe42d0… ragelink 31 }
afe42d0… ragelink 32
afe42d0… ragelink 33 table.import-preview tr.skip, html[data-theme="light"] table.import-preview tr.skip {
afe42d0… ragelink 34 background-color: #d2d2d2;
afe42d0… ragelink 35 }
afe42d0… ragelink 36
afe42d0… ragelink 37 table.import-preview tr.new, html[data-theme="light"] table.import-preview tr.new {
afe42d0… ragelink 38 background-color: #bdd8b2;
afe42d0… ragelink 39 }
afe42d0… ragelink 40
afe42d0… ragelink 41 table.import-preview tr.delete, html[data-theme="light"] table.import-preview tr.delete {
afe42d0… ragelink 42 background-color: #f9bebf;
afe42d0… ragelink 43 }
afe42d0… ragelink 44
afe42d0… ragelink 45 table.import-preview tr.update, html[data-theme="light"] table.import-preview tr.update {
afe42d0… ragelink 46 background-color: #fdfdcf;
afe42d0… ragelink 47 }
afe42d0… ragelink 48
afe42d0… ragelink 49 table.import-preview td ins, html[data-theme="light"] table.import-preview td ins {
afe42d0… ragelink 50 background-color: #e6ffe6 !important;
afe42d0… ragelink 51 }
afe42d0… ragelink 52
afe42d0… ragelink 53 html[data-theme="light"] table.import-preview td del {
afe42d0… ragelink 54 background-color: #ffe6e6 !important;
afe42d0… ragelink 55 }
afe42d0… ragelink 56
afe42d0… ragelink 57 .import-preview td:hover .validation-error-count {
afe42d0… ragelink 58 z-index: 3;
afe42d0… ragelink 59 }
afe42d0… ragelink 60 .import-preview td:hover .validation-error-container {
afe42d0… ragelink 61 opacity: 1;
afe42d0… ragelink 62 pointer-events: auto;
afe42d0… ragelink 63 }
afe42d0… ragelink 64
afe42d0… ragelink 65 .validation-error-list {
afe42d0… ragelink 66 margin: 0;
afe42d0… ragelink 67 padding: 0;
afe42d0… ragelink 68 }
afe42d0… ragelink 69
afe42d0… ragelink 70 .validation-error-list li {
afe42d0… ragelink 71 list-style: none;
afe42d0… ragelink 72 margin: 0;
afe42d0… ragelink 73 }
afe42d0… ragelink 74
afe42d0… ragelink 75 .validation-error-list > li > ul {
afe42d0… ragelink 76 margin: 8px 0;
afe42d0… ragelink 77 padding: 0;
afe42d0… ragelink 78 }
afe42d0… ragelink 79
afe42d0… ragelink 80 .validation-error-list > li > ul > li {
afe42d0… ragelink 81 padding: 0;
afe42d0… ragelink 82 margin: 0 0 10px;
afe42d0… ragelink 83 line-height: 1.28em;
afe42d0… ragelink 84 }
afe42d0… ragelink 85
afe42d0… ragelink 86 .validation-error-field-label {
afe42d0… ragelink 87 display: block;
afe42d0… ragelink 88 border-bottom: 1px solid #e40000;
afe42d0… ragelink 89 color: #e40000;
afe42d0… ragelink 90 text-transform: uppercase;
afe42d0… ragelink 91 font-weight: bold;
afe42d0… ragelink 92 font-size: 0.85em;
afe42d0… ragelink 93 }
afe42d0… ragelink 94
afe42d0… ragelink 95 @media (prefers-color-scheme: dark) {
afe42d0… ragelink 96 table.import-preview tr.skip {
afe42d0… ragelink 97 background-color: #2d2d2d;
afe42d0… ragelink 98 }
afe42d0… ragelink 99
afe42d0… ragelink 100 table.import-preview tr.new {
afe42d0… ragelink 101 background-color: #42274d;
afe42d0… ragelink 102 }
afe42d0… ragelink 103
afe42d0… ragelink 104 table.import-preview tr.delete {
afe42d0… ragelink 105 background-color: #064140;
afe42d0… ragelink 106 }
afe42d0… ragelink 107
afe42d0… ragelink 108 table.import-preview tr.update {
afe42d0… ragelink 109 background-color: #020230;
afe42d0… ragelink 110 }
afe42d0… ragelink 111
afe42d0… ragelink 112 .validation-error-container {
afe42d0… ragelink 113 background-color: #003e3e;
afe42d0… ragelink 114 }
afe42d0… ragelink 115
afe42d0… ragelink 116 /*
afe42d0… ragelink 117 these declarations are necessary to forcibly override the
afe42d0… ragelink 118 formatting applied by the diff-match-patch python library
afe42d0… ragelink 119 */
afe42d0… ragelink 120 table.import-preview td ins {
afe42d0… ragelink 121 background-color: #190019 !important;
afe42d0… ragelink 122 }
afe42d0… ragelink 123
afe42d0… ragelink 124 table.import-preview td del {
afe42d0… ragelink 125 background-color: #001919 !important;
afe42d0… ragelink 126 }
afe42d0… ragelink 127 }
afe42d0… ragelink 128
afe42d0… ragelink 129 html[data-theme="dark"] table.import-preview tr.skip {
afe42d0… ragelink 130 background-color: #2d2d2d;
afe42d0… ragelink 131 }
afe42d0… ragelink 132
afe42d0… ragelink 133 html[data-theme="dark"] table.import-preview tr.new {
afe42d0… ragelink 134 background-color: #42274d;
afe42d0… ragelink 135 }
afe42d0… ragelink 136
afe42d0… ragelink 137 html[data-theme="dark"] table.import-preview tr.delete {
afe42d0… ragelink 138 background-color: #064140;
afe42d0… ragelink 139 }
afe42d0… ragelink 140
afe42d0… ragelink 141 html[data-theme="dark"] table.import-preview tr.update {
afe42d0… ragelink 142 background-color: #020230;
afe42d0… ragelink 143 }
afe42d0… ragelink 144
afe42d0… ragelink 145 html[data-theme="dark"] .validation-error-container {
afe42d0… ragelink 146 background-color: #003e3e;
afe42d0… ragelink 147 }
afe42d0… ragelink 148
afe42d0… ragelink 149 /*
afe42d0… ragelink 150 these declarations are necessary to forcibly override the
afe42d0… ragelink 151 formatting applied by the diff-match-patch python library
afe42d0… ragelink 152 */
afe42d0… ragelink 153 html[data-theme="dark"] table.import-preview td ins {
afe42d0… ragelink 154 background-color: #190019 !important;
afe42d0… ragelink 155 }
afe42d0… ragelink 156
afe42d0… ragelink 157 html[data-theme="dark"] table.import-preview td del {
afe42d0… ragelink 158 background-color: #001919 !important;
afe42d0… ragelink 159 }

Keyboard Shortcuts

Open search /
Next entry (timeline) j
Previous entry (timeline) k
Open focused entry Enter
Show this help ?
Toggle theme Top nav button