summaryrefslogtreecommitdiffstats
path: root/ui
diff options
context:
space:
mode:
authorGaute Hope <eg@gaute.vetsj.com>2018-06-29 10:49:57 +0200
committerGaute Hope <eg@gaute.vetsj.com>2018-06-29 10:49:57 +0200
commitf0452517387ba4668c30b8ae9592a92ef9fe341c (patch)
tree56e73050f5dae12a4d8aa39db5488957abeb7130 /ui
parenta0b0df731628c413dddc95aedae852d4c7aefdc2 (diff)
w2: make alternative part divs not overlap iframes and fix focus next element
Diffstat (limited to 'ui')
-rw-r--r--ui/thread-view.html23
-rw-r--r--ui/thread-view.scss112
2 files changed, 3 insertions, 132 deletions
diff --git a/ui/thread-view.html b/ui/thread-view.html
index 3043cb2..090fc7e 100644
--- a/ui/thread-view.html
+++ b/ui/thread-view.html
@@ -56,30 +56,9 @@
<div class="message"></div>
</div>
-<span id="body_template" class="body_part">
+<div id="body_template" class="body_part">
<iframe class="body_iframe"></iframe>
</span>
-<div id="link_warning_template" class="link_warning">
- <img class="close_link_warning button" />
-</div>
-<div id="spinner">
-<!--
- Spinner code from CSSLoad.net
- License: http://cssload.net/en/terms_of_use
- -->
-<div id="floatingCirclesG">
- <div class="f_circleG" id="frotateG_01"></div>
- <div class="f_circleG" id="frotateG_02"></div>
- <div class="f_circleG" id="frotateG_03"></div>
- <div class="f_circleG" id="frotateG_04"></div>
- <div class="f_circleG" id="frotateG_05"></div>
- <div class="f_circleG" id="frotateG_06"></div>
- <div class="f_circleG" id="frotateG_07"></div>
- <div class="f_circleG" id="frotateG_08"></div>
-</div>
-
-
-</div>
</body>
</html>
diff --git a/ui/thread-view.scss b/ui/thread-view.scss
index 1978c97..cee85c5 100644
--- a/ui/thread-view.scss
+++ b/ui/thread-view.scss
@@ -719,7 +719,7 @@ body.nohide .email .compressed_note > span {
}
.email > .email_container > .body > .encrypt_container > .message > span.header {
- color: black;
+ color: black;
font-weight: bold;
margin-bottom: 2px;
display: block;
@@ -769,6 +769,7 @@ body.nohide .email .compressed_note > span {
.email > .email_container > .body > .sibling_container, .email > .email_container > .body > .mime_container {
display: block;
+ clear: both;
vertical-align: middle;
text-align: center;
padding: 0px;
@@ -1042,112 +1043,3 @@ blockquote > blockquote > blockquote > blockquote > blockquote > blockquote > bl
background-color: #e8e8e8;
}
-#spinner {
- display: none;
- margin: 100px auto;
- width: 128px;
-}
-
-/*
-Spinner code from CSSload.net
-License: http://cssload.net/en/terms_of_use
-*/
-
-#spinner #floatingCirclesG {
- position:relative;
- width:128px;
- height:128px;
- -webkit-transform:scale(0.6);
- transform:scale(0.6);
-}
-
-#spinner .f_circleG {
- position:absolute;
- background-color:#FFFFFF;
- height:23px;
- width:23px;
- -webkit-border-radius:12px;
- -webkit-animation-name:f_fadeG;
- -webkit-animation-duration:1.04s;
- -webkit-animation-iteration-count:infinite;
- -webkit-animation-direction:linear;
- border-radius:12px;
- animation-name:f_fadeG;
- animation-duration:1.04s;
- animation-iteration-count:infinite;
- animation-direction:linear;
-}
-
-#spinner #frotateG_01 {
- left:0;
- top:52px;
- -webkit-animation-delay:0.39s;
- animation-delay:0.39s;
-}
-
-#spinner #frotateG_02 {
- left:15px;
- top:15px;
- -webkit-animation-delay:0.52s;
- animation-delay:0.52s;
-}
-
-#spinner #frotateG_03 {
- left:52px;
- top:0;
- -webkit-animation-delay:0.65s;
- animation-delay:0.65s;
-}
-
-#spinner #frotateG_04 {
- right:15px;
- top:15px;
- -webkit-animation-delay:0.78s;
- animation-delay:0.78s;
-}
-
-#spinner #frotateG_05 {
- right:0;
- top:52px;
- -webkit-animation-delay:0.91s;
- animation-delay:0.91s;
-}
-
-#spinner #frotateG_06 {
- right:15px;
- bottom:15px;
- -webkit-animation-delay:1.04s;
- animation-delay:1.04s;
-}
-
-#spinner #frotateG_07 {
- left:52px;
- bottom:0;
- -moz-animation-delay:1.17s;
- -webkit-animation-delay:1.17s;
- -ms-animation-delay:1.17s;
- -o-animation-delay:1.17s;
- animation-delay:1.17s;
-}
-
-#spinner #frotateG_08 {
- left:15px;
- bottom:15px;
- -moz-animation-delay:1.3s;
- -webkit-animation-delay:1.3s;
- -ms-animation-delay:1.3s;
- -o-animation-delay:1.3s;
- animation-delay:1.3s;
-}
-
-@-webkit-keyframes f_fadeG {
- 0% {
- background-color:#000000
- }
-
- 100% {
- background-color:#FFFFFF
- }
-}
-
-/* /Spinner */