aboutsummaryrefslogtreecommitdiffstats
path: root/css/user-rules.css
diff options
context:
space:
mode:
authorAlessio Vanni <vannilla@firemail.cc>2019-02-19 21:06:09 +0100
committerAlessio Vanni <vannilla@firemail.cc>2019-02-19 21:06:09 +0100
commitfe2f8acc8210c2ddead4621797b47106a9b38f5b (patch)
tree5fb103d45d7e4345f56fc068ce8173b82fa7051f /css/user-rules.css
downloadematrix-fe2f8acc8210c2ddead4621797b47106a9b38f5b.tar.lz
ematrix-fe2f8acc8210c2ddead4621797b47106a9b38f5b.tar.xz
ematrix-fe2f8acc8210c2ddead4621797b47106a9b38f5b.zip
Fork uMatrix
Pretty much just changing the name and the copyright.
Diffstat (limited to 'css/user-rules.css')
-rw-r--r--css/user-rules.css162
1 files changed, 162 insertions, 0 deletions
diff --git a/css/user-rules.css b/css/user-rules.css
new file mode 100644
index 0000000..8142edb
--- /dev/null
+++ b/css/user-rules.css
@@ -0,0 +1,162 @@
+div > p:first-child {
+ margin-top: 0;
+ }
+div > p:last-child {
+ margin-bottom: 0;
+ }
+#diff {
+ border: 0;
+ margin: 0;
+ padding: 0;
+ white-space: nowrap;
+}
+#diff > .pane {
+ border: 0;
+ box-sizing: box-border;
+ display: inline-block;
+ margin: 0;
+ padding: 0;
+ position: relative;
+ vertical-align: top;
+ white-space: normal;
+ width: calc(50% - 2px);
+ }
+#diff > .pane > div {
+ padding: 0 0 1em 0;
+ text-align: center;
+ }
+#diff > .pane > div > span {
+ float: left;
+ }
+body[dir="ltr"] #revertButton:after {
+ content: '\2009\f061';
+ font-family: FontAwesome;
+ font-style: normal;
+ font-weight: normal;
+ line-height: 1;
+ vertical-align: baseline;
+ display: inline-block;
+ }
+body[dir="rtl"] #revertButton:after {
+ content: '\2009\f060';
+ font-family: FontAwesome;
+ font-style: normal;
+ font-weight: normal;
+ line-height: 1;
+ vertical-align: baseline;
+ display: inline-block;
+ }
+body[dir="ltr"] #commitButton:before {
+ content: '\f060\2009';
+ font-family: FontAwesome;
+ font-style: normal;
+ font-weight: normal;
+ line-height: 1;
+ vertical-align: baseline;
+ display: inline-block;
+ }
+body[dir="rtl"] #commitButton:before {
+ content: '\f061\2009';
+ font-family: FontAwesome;
+ font-style: normal;
+ font-weight: normal;
+ line-height: 1;
+ vertical-align: baseline;
+ display: inline-block;
+ }
+#revertButton,
+#commitButton,
+#diff.edit #editEnterButton {
+ opacity: 0.25;
+ pointer-events: none;
+ }
+#editStopButton,
+#editCancelButton {
+ display: none;
+ }
+#diff.dirty:not(.edit) #revertButton,
+#diff.dirty:not(.edit) #commitButton {
+ opacity: 1;
+ pointer-events: auto;
+ }
+#diff.edit #editStopButton,
+#diff.edit #editCancelButton {
+ display: initial;
+ }
+#diff.edit #importButton,
+#diff.edit #exportButton {
+ display: none;
+ }
+#diff ul {
+ border: 0;
+ border-top: 1px solid #eee;
+ list-style-type: none;
+ margin: 0;
+ overflow: hidden;
+ padding: 1em 0 0 0;
+ }
+#diff ul,
+#diff textarea {
+ font: 12px/1.8 monospace;
+ }
+#diff.edit .right ul {
+ visibility: hidden;
+ }
+#diff .left {
+ padding: 0 0 0 0;
+ }
+#diff .right > ul {
+ color: #888;
+ }
+#diff li {
+ background-color: white;
+ direction: ltr;
+ padding: 0;
+ text-align: left;
+ white-space: nowrap;
+ }
+#diff li:nth-of-type(2n+0) {
+ background-color: #eee;
+ }
+#diff .right li {
+ cursor: pointer;
+ }
+#diff .right li:hover {
+ background-color: #ffc;
+ color: #000;
+ }
+#diff .right li.notLeft {
+ color: #000;
+ }
+#diff .right li.notLeft:hover {
+ text-decoration: line-through;
+ }
+#diff .right li.notRight {
+ color: #000;
+ }
+#diff .right li.toRemove {
+ color: #000;
+ text-decoration: line-through;
+ }
+#diff textarea {
+ border: 0;
+ border-top: 1px solid #eee;
+ direction: ltr;
+ height: 100%;
+ left: 0;
+ margin: 0;
+ overflow: hidden;
+ overflow-y: auto;
+ padding: 1em 0 0 0;
+ position: absolute;
+ resize: none;
+ visibility: hidden;
+ white-space: pre;
+ width: 100%;
+ }
+#diff.edit textarea {
+ visibility: visible;
+ }
+.hidden {
+ display: none;
+ }