Skip to content

Commit

Permalink
bugs fixed and improvements
Browse files Browse the repository at this point in the history
  • Loading branch information
amiyasahu committed Nov 4, 2014
1 parent c43695d commit 092b6e1
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 10 deletions.
16 changes: 11 additions & 5 deletions css/donut.css
Original file line number Diff line number Diff line change
Expand Up @@ -4420,7 +4420,7 @@ a.qa-browse-cat-link:visited {
}
@media only screen and (max-width: 767px) {
.qa-q-view-c-list {
margin-right: -40px;
margin-right: -5px;
}
}
.qa-q-view-hidden .qa-voting {
Expand Down Expand Up @@ -4545,6 +4545,9 @@ a.qa-browse-cat-link:visited {
.qa-a-list-item-hidden .qa-user-link {
color: #777777;
}
.qa-a-list-item .qa-voting {
margin-top: -10px;
}
.qa-a-item-main {
float: left;
width: 85%;
Expand All @@ -4553,7 +4556,7 @@ a.qa-browse-cat-link:visited {
}
@media only screen and (max-width: 767px) {
.qa-a-item-main {
width: 80%;
width: 100%;
}
}
.qa-c-form h2 {
Expand Down Expand Up @@ -4624,7 +4627,7 @@ a.qa-browse-cat-link:visited {
}
@media only screen and (max-width: 767px) {
.qa-a-item-c-list {
margin-right: -40px;
margin-right: -5px;
}
}
/* Answer selection */
Expand All @@ -4634,14 +4637,15 @@ a.qa-browse-cat-link:visited {
top: 85px;
width: 60px;
text-align: center;
float: left ;
-webkit-transition: all .5s ease;
transition: all .5s ease;
}
@media only screen and (max-width: 767px) {
.qa-a-selection {
left: initial ;
right: 10px;
top: 20px;
right: 5px;
top: 10px;
float: right ;
}
}
Expand Down Expand Up @@ -4686,6 +4690,7 @@ a.qa-browse-cat-link:visited {
color: #31708f;
-webkit-transition: all .5s ease;
transition: all .5s ease;
border-radius: 200px !important ;
}
.qa-a-select-button:hover,
.qa-a-select-button:focus,
Expand Down Expand Up @@ -4798,6 +4803,7 @@ fieldset[disabled] .qa-a-select-button {
color: #3c763d;
-webkit-transition: all .5s ease;
transition: all .5s ease;
border-radius: 200px !important ;
}
.qa-a-unselect-button:hover,
.qa-a-unselect-button:focus,
Expand Down
16 changes: 11 additions & 5 deletions less/donut.less
Original file line number Diff line number Diff line change
Expand Up @@ -2100,7 +2100,7 @@ div {
.clearfix();
margin : 15px -15px 15px 15px;
@media @mobile {
margin-right: -40px;
margin-right: -5px;
}
}

Expand Down Expand Up @@ -2197,6 +2197,9 @@ div {
color:@gray-light;
}
}
.qa-voting {
margin-top: -10px;
}
}

.qa-a-item-main {
Expand All @@ -2205,7 +2208,7 @@ div {
min-height: 1px;
padding: 0 10px 10px 10px ;
@media @mobile {
width: 80%;
width: 100%;
}
}

Expand Down Expand Up @@ -2270,7 +2273,7 @@ div {
.clearfix();
margin : 15px -15px 15px 15px;
@media @mobile {
margin-right: -40px;
margin-right: -5px;
}
}
}
Expand All @@ -2283,15 +2286,16 @@ div {
top:85px;
width:60px;
text-align:center;
float: left ;
-webkit-transition: all .5s ease;
-moz-transition: all .5s ease;
-ms-transition: all .5s ease;
-o-transition: all .5s ease;
transition: all .5s ease;
@media @mobile {
left: initial ;
right:10px;
top:20px;
right:5px;
top:10px;
float: right ;
}
}
Expand All @@ -2312,6 +2316,7 @@ div {
// background-color: @state-info-text;
color : lighten(@state-info-text, 10);
}
border-radius: 200px !important ;
}

.qa-a-unselect-button {
Expand All @@ -2332,6 +2337,7 @@ div {
color: @state-success-text ;
// background-color: @body-bg;
}
border-radius: 200px !important ;
}

.qa-a-selected {
Expand Down

0 comments on commit 092b6e1

Please sign in to comment.