Skip to content

Commit

Permalink
dev Fixed slider height in default and basic template
Browse files Browse the repository at this point in the history
Fixed issue #3246: IE8: Small layout problem at condition designer 

git-svn-id: file:///Users/Shitiz/Downloads/lssvn/source/limesurvey@7068 b72ed6b6-b9f8-46b5-92b4-906544132732
  • Loading branch information
c-schmitz committed Jun 11, 2009
1 parent 2fc2e08 commit 1267fd4
Show file tree
Hide file tree
Showing 3 changed files with 21 additions and 11 deletions.
8 changes: 8 additions & 0 deletions admin/styles/default/adminstyle.css
Original file line number Diff line number Diff line change
Expand Up @@ -807,4 +807,12 @@ div.messagebox .warningheader {
margin: 5px 0;
padding:2px;
}

.conditiontbl td {
text-align:left;
}


.conditiontbl td:first-child {
text-align:right;
}
6 changes: 5 additions & 1 deletion templates/basic/template.css
Original file line number Diff line number Diff line change
Expand Up @@ -544,7 +544,11 @@ ul.cols-8 li , ul.cols-8-ul , table.cols-8 td { width: 11.5%; }
/** UI Slider **/
.ui-slider-handle { position: absolute; height: 23px; width: 12px; top: 0px; left: 0px; background-image: url(../../images/slider-handle.gif); }
.ui-slider-disabled .ui-slider-handle { opacity: 0.5; filter: alpha(opacity=50); }
.ui-slider-1 { width: 200px; height: 23px; padding: 1px; position: relative; background-image: url(../../images/slider-bg-1.png); background-repeat: no-repeat; background-position: center center; }
.ui-slider-1 {
width: 200px;
height: 9px;
margin-bottom: 20px;
}
.ui-slider-2 { width: 200px; height: 23px; position: relative; background-image: url(../../images/slider-bg-2.png); background-repeat: no-repeat; background-position: center center; }
.slider_callout { no-repeat; height: 20px; width: 100px; overflow: hidden; position: absolute; top: -17px; margin-left:+15px; font-family: 'Myriad Pro'; color: #284a6e; font-weight: bold; text-align: left;}

Expand Down
18 changes: 8 additions & 10 deletions templates/default/template.css
Original file line number Diff line number Diff line change
Expand Up @@ -660,14 +660,11 @@ ul.cols-8 li , ul.cols-8-ul , table.cols-8 td { width: 11.5%; }

.ui-slider-1 {
width: 200px;
height: 23px;
padding: 1px;
position: relative;
background-image: url(../../images/slider-bg-1.png);
background-repeat: no-repeat;
background-position: center center;
height: 9px;
margin-bottom: 20px;
}


.ui-slider-2 {
width: 200px;
height: 23px;
Expand All @@ -682,9 +679,10 @@ ul.cols-8 li , ul.cols-8-ul , table.cols-8 td { width: 11.5%; }
width: 100px;
overflow: hidden;
position: absolute;
top: -17px;
margin-left:+15px;
font-family: 'Myriad Pro';
top: -19px;
margin-left:10px;
font-family: 'Arial';
font-size: 9pt;
color: #284a6e;
font-weight: bold;
text-align: left;
Expand Down Expand Up @@ -883,4 +881,4 @@ div#wrapper {
.questiontext li, .questionhelp li {
list-style-type:disc;
text-indent: 0;
}
}

0 comments on commit 1267fd4

Please sign in to comment.