Browse Source

some fixes : img float

Bachir Soussi Chiadmi 10 years ago
parent
commit
e88e87bdfb
2 changed files with 38 additions and 20 deletions
  1. 32 20
      sites/all/themes/gui/jee/css/jee.css
  2. 6 0
      sites/all/themes/gui/jee/css/jee.scss

+ 32 - 20
sites/all/themes/gui/jee/css/jee.css

@@ -4871,6 +4871,18 @@ div.messages {
   font-size: 0.85em;
   line-height: 1.5em;
 }
+/* line 818, jee.scss */
+#static-wrapper .content a {
+  text-decoration: underline;
+}
+/* line 821, jee.scss */
+#static-wrapper .content img.floatleft {
+  float: left;
+}
+/* line 822, jee.scss */
+#static-wrapper .content img.floatright {
+  float: right;
+}
 
 /*  __________  ____  ________________
    / ____/ __ \/ __ \/_  __/ ____/ __ \
@@ -4878,60 +4890,60 @@ div.messages {
  / __/ / /_/ / /_/ / / / / /___/ _, _/
 /_/    \____/\____/ /_/ /_____/_/ |_|
 */
-/* line 828, jee.scss */
+/* line 834, jee.scss */
 #footer {
   position: fixed;
   bottom: 0;
   right: 20px;
   z-index: 900;
 }
-/* line 833, jee.scss */
+/* line 839, jee.scss */
 body.chapter-displayed #footer {
   display: none;
 }
-/* line 837, jee.scss */
+/* line 843, jee.scss */
 #footer .block {
   display: inline-block;
   vertical-align: top;
   font-size: 0.5em;
 }
-/* line 841, jee.scss */
+/* line 847, jee.scss */
 #footer .block p {
   font-size: inherit;
 }
-/* line 842, jee.scss */
+/* line 848, jee.scss */
 #footer .block a {
   color: #000;
 }
-/* line 845, jee.scss */
+/* line 851, jee.scss */
 #footer .block-menu {
   display: block;
   font-size: inherit;
 }
-/* line 848, jee.scss */
+/* line 854, jee.scss */
 #footer .block-menu ul {
   margin: 0;
   padding: 0;
 }
-/* line 850, jee.scss */
+/* line 856, jee.scss */
 #footer .block-menu ul li {
   margin: 0 1em 0 0;
   padding: 0;
   display: inline-block;
   list-style: none;
 }
-/* line 854, jee.scss */
+/* line 860, jee.scss */
 #footer .block-menu ul li a {
   font-family: "epflulb";
   color: #000;
   text-transform: uppercase;
   font-size: 0.6em;
 }
-/* line 864, jee.scss */
+/* line 870, jee.scss */
 #footer p {
   margin: 0;
 }
-/* line 868, jee.scss */
+/* line 874, jee.scss */
 #footer #block-block-1 {
   display: none;
 }
@@ -4943,7 +4955,7 @@ body.chapter-displayed #footer {
  / /  / // / ___/ / /___
 /_/  /_/___//____/\____/
 */
-/* line 877, jee.scss */
+/* line 883, jee.scss */
 #loader {
   position: absolute;
   top: 50%;
@@ -4960,13 +4972,13 @@ body.chapter-displayed #footer {
   -webkit-transition-property: opacity;
           transition-property: opacity;
 }
-/* line 888, jee.scss */
+/* line 894, jee.scss */
 body.loading #loader {
   z-index: 1000;
   opacity: 1;
 }
 
-/* line 894, jee.scss */
+/* line 900, jee.scss */
 #fullscreen-btn {
   position: fixed;
   right: 20px;
@@ -4980,13 +4992,13 @@ body.loading #loader {
   background: transparent url("../assets/img/fullscreen-on.png") no-repeat center center;
   background: none, url("../assets/img/fullscreen-on.svg") no-repeat center center;
 }
-/* line 903, jee.scss */
+/* line 909, jee.scss */
 .fullscreen #fullscreen-btn {
   background: transparent url("../assets/img/fullscreen-off.png") no-repeat center center;
   background: none, url("../assets/img/fullscreen-off.svg") no-repeat center center;
 }
 
-/* line 916, jee.scss */
+/* line 922, jee.scss */
 .bubble-1 {
   position: absolute;
   z-index: 0;
@@ -4999,7 +5011,7 @@ body.loading #loader {
   left: -200px;
 }
 
-/* line 920, jee.scss */
+/* line 926, jee.scss */
 .bubble-2 {
   position: absolute;
   z-index: 0;
@@ -5012,7 +5024,7 @@ body.loading #loader {
   right: -400px;
 }
 
-/* line 925, jee.scss */
+/* line 931, jee.scss */
 .star {
   position: absolute;
   z-index: 0;
@@ -5030,7 +5042,7 @@ body.loading #loader {
  / /_/ / /___/ /_/ / /_/ / /_/ /
 /_____/_____/_____/\____/\____/
 */
-/* line 939, jee.scss */
+/* line 945, jee.scss */
 #fps {
   position: fixed;
   bottom: 40px;
@@ -5038,7 +5050,7 @@ body.loading #loader {
   z-index: 1000;
 }
 
-/* line 945, jee.scss */
+/* line 951, jee.scss */
 #nav-cursor {
   position: absolute;
   width: 6px;

+ 6 - 0
sites/all/themes/gui/jee/css/jee.scss

@@ -814,6 +814,12 @@ div.messages{
       font-size:0.85em;
       line-height:1.5em;
     }
+
+    a{
+      text-decoration:underline;
+    }
+    img.floatleft{float:left;}
+    img.floatright{float:right;}
   }
 }