Skip to content

Commit

Permalink
a few fixes for improving css reliability
Browse files Browse the repository at this point in the history
  • Loading branch information
orthagh authored Nov 25, 2024
1 parent 8c82f99 commit be7d854
Show file tree
Hide file tree
Showing 6 changed files with 9 additions and 50 deletions.
4 changes: 2 additions & 2 deletions css/includes/components/_log_viewer.scss
Original file line number Diff line number Diff line change
Expand Up @@ -80,11 +80,11 @@
height: 20px;

&::after {
font-family: tabler-icons !important;
font-family: tabler-icons, sans-serif !important;
content: "\eb5f";
position: absolute;
left: 0;
top: 0.3em;
top: 0.8em;
}
}

Expand Down
2 changes: 1 addition & 1 deletion css/includes/components/_richtext.scss
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ body.mce-content-body {
}

a[target="_blank"]::before {
font-family: tabler-icons;
font-family: tabler-icons, sans-serif;
content: "\ea99";
padding-right: 4px;
}
Expand Down
2 changes: 1 addition & 1 deletion css/includes/components/_saved-searches.scss
Original file line number Diff line number Diff line change
Expand Up @@ -187,7 +187,7 @@ body.horizontal-layout {

&:hover::before {
content: "\ec01";
font-family: tabler-icons;
font-family: tabler-icons, sans-serif;
font-weight: 900;
color: var(--tblr-secondary);
margin-left: -1rem;
Expand Down
4 changes: 1 addition & 3 deletions css/legacy/includes/_impact.scss
Original file line number Diff line number Diff line change
Expand Up @@ -185,6 +185,7 @@ i.fa-impact-manipulation {
.impact-range {
height : 18px;
-webkit-appearance: none;
appearance: none;
margin : 10px 0;
border-width : 0 !important;
margin-top : 0 !important;
Expand All @@ -199,7 +200,6 @@ i.fa-impact-manipulation {
width : 100%;
height : 4px;
cursor : pointer;
animate : 0.2s;
box-shadow : 0px 0px 0px #000000;
background : #AEC8D8;
border-radius: 25px;
Expand All @@ -226,7 +226,6 @@ i.fa-impact-manipulation {
width : 100%;
height : 4px;
cursor : pointer;
animate : 0.2s;
box-shadow : 0px 0px 0px #000000;
background : #AEC8D8;
border-radius: 25px;
Expand All @@ -247,7 +246,6 @@ i.fa-impact-manipulation {
width : 100%;
height : 4px;
cursor : pointer;
animate : 0.2s;
background : transparent;
border-color: transparent;
color : transparent;
Expand Down
5 changes: 2 additions & 3 deletions css/legacy/includes/_planning.scss
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,6 @@

ul.filters {
border: 0;
padding: 5px;
list-style: none;
margin: 0;
padding: 0;
Expand Down Expand Up @@ -363,15 +362,15 @@
background-image: -moz-linear-gradient(left, red 50%, green 0%);
background-image: -ms-linear-gradient(left, red 50%, green 0%);
background-image: -o-linear-gradient(left, red 50%, green 0%);
background-image: linear-gradient(left, red 50%, green 0%);
background-image: linear-gradient(to left, red 50%, green 0%);
}

.partialavailablebegin {
background-image: -webkit-linear-gradient(left, green 50%, red 0%);
background-image: -moz-linear-gradient(left, green 50%, red 0%);
background-image: -ms-linear-gradient(left, green 50%, red 0%);
background-image: -o-linear-gradient(left, green 50%, red 0%);
background-image: linear-gradient(left, green 50%, red 0%);
background-image: linear-gradient(to left, green 50%, red 0%);
}

.planning-context-menu {
Expand Down
42 changes: 2 additions & 40 deletions css/legacy/includes/_styles.scss
Original file line number Diff line number Diff line change
Expand Up @@ -305,10 +305,7 @@
}

.tab_cadre th, .tab_cadre_fixe th, .tab_cadre_fixehov th, .tab_cadrehov th, h2.header {
font-size: 12px;
font-weight: bold;
border-radius: 4px;
padding: 2px;
border-radius: 0;
margin: 0;
font-size: 1.1em;
Expand Down Expand Up @@ -495,16 +492,6 @@

/* ################--------------- User Picture ---------------#################### */

.tooltip {
font-size: 11px !important;

&:contains(img) {
white-space: nowrap;
height: 100px !important;
border: 10px solid red;
}
}

.tooltip_picture_border {
padding: 2px;
border-radius: 51px;
Expand Down Expand Up @@ -914,31 +901,6 @@
}
}

.x-button {
position: relative;
margin: 0;
float: left;
outline: none;
padding: 5px;
cursor: pointer;
font: bold 12px Arial, Helvetica;
color: #8f5a0a;
background-color: #FEC95C;
border: none;
border-radius: 0;

&:hover {
cursor: pointer;
background-color: #fddb6f;
box-shadow: 0px 1px 1px #999;
}

&.x-button-main {
width: 100px;
height: 26px;
}
}


/** QUEUEMAIL **/

Expand All @@ -961,7 +923,7 @@
}

&:after {
font-family: 'Font Awesome 6 Free';
font-family: "Font Awesome 6 Free", sans-serif;
position: relative;
left: -15px;
top: 1px;
Expand Down Expand Up @@ -1090,7 +1052,7 @@
padding: .5em;
margin: 0 5px 1em;
cursor: pointer;
font: bold 12px Arial, Helvetica;
font: bold 12px Arial, Helvetica, sans-serif;
color: #8f5a0a;
background-color: #FEC95C;
border: 0;
Expand Down

0 comments on commit be7d854

Please sign in to comment.