
Update commons modules to release 7.12, and move the codebase under modules/commons instead of constant fetching from remote repository. The commons.make file removed so it is not required to rebuild groups distribution. Change-Id: I3be393ba1af34427e2915b18ab1ad718fd4e54db
132 lines
2.8 KiB
CSS
132 lines
2.8 KiB
CSS
.rate-widget-commons_thumbs_up_down {
|
|
width: 4.5em;
|
|
margin: 1.7em 0;
|
|
}
|
|
|
|
.rate-info {
|
|
position: relative;
|
|
width: 100%;
|
|
height: 3.5em;
|
|
-webkit-box-sizing: border-box;
|
|
-moz-box-sizing: border-box;
|
|
box-sizing: border-box;
|
|
margin-bottom: .4em;
|
|
padding: .1em .4em;
|
|
border: 1px solid #ccc;
|
|
-webkit-border-radius: 0.3em;
|
|
-moz-border-radius: 0.3em;
|
|
-ms-border-radius: 0.3em;
|
|
-o-border-radius: 0.3em;
|
|
border-radius: 0.3em;
|
|
font-size: .8em;
|
|
line-height: 1.2em;
|
|
text-align: center;
|
|
background: #fff;
|
|
color: #333;
|
|
z-index: 0;
|
|
}
|
|
.rate-info:before, .rate-info:after {
|
|
content: "";
|
|
display: block;
|
|
width: 0;
|
|
height: 0;
|
|
overflow: hidden;
|
|
position: absolute;
|
|
bottom: -0.85em;
|
|
left: 50%;
|
|
margin-left: -0.5em;
|
|
border: 0.5em solid transparent;
|
|
}
|
|
.rate-info:before {
|
|
border-top-color: #ccc;
|
|
margin-bottom: -1px;
|
|
}
|
|
.rate-info:after {
|
|
border-top-color: #fff;
|
|
}
|
|
|
|
.rate-info-value {
|
|
display: block;
|
|
font-size: 1.8em;
|
|
font-weight: bold;
|
|
line-height: 1em;
|
|
}
|
|
|
|
.rate-info-label {
|
|
line-height: 1em;
|
|
color: #888;
|
|
}
|
|
|
|
.commons-q-a-rate-buttons {
|
|
margin: 0;
|
|
line-height: 100%;
|
|
}
|
|
|
|
.commons-q-a-rate-trigger {
|
|
margin: 0;
|
|
width: 50%;
|
|
height: 2em;
|
|
-webkit-box-sizing: border-box;
|
|
-moz-box-sizing: border-box;
|
|
box-sizing: border-box;
|
|
line-height: 2em;
|
|
}
|
|
.commons-q-a-rate-trigger .rate-button {
|
|
display: block;
|
|
height: 100%;
|
|
overflow: hidden;
|
|
-webkit-box-sizing: border-box;
|
|
-moz-box-sizing: border-box;
|
|
box-sizing: border-box;
|
|
border: 1px solid #ccc;
|
|
-webkit-border-radius: 0.3em;
|
|
-moz-border-radius: 0.3em;
|
|
-ms-border-radius: 0.3em;
|
|
-o-border-radius: 0.3em;
|
|
border-radius: 0.3em;
|
|
color: transparent;
|
|
background: #fefefe;
|
|
background: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #fefefe), color-stop(100%, #e8e8e8));
|
|
background: -webkit-linear-gradient(top, #fefefe, #e8e8e8);
|
|
background: -moz-linear-gradient(top, #fefefe, #e8e8e8);
|
|
background: -o-linear-gradient(top, #fefefe, #e8e8e8);
|
|
background: linear-gradient(top, #fefefe, #e8e8e8);
|
|
}
|
|
.commons-q-a-rate-trigger .rate-button:before {
|
|
display: block;
|
|
margin: 0 auto;
|
|
text-align: center;
|
|
font-size: 2.4em;
|
|
color: #333;
|
|
font-weight: bold;
|
|
font-family: monospace;
|
|
}
|
|
.commons-q-a-rate-trigger .rate-button:hover {
|
|
text-decoration: none;
|
|
}
|
|
.commons-q-a-rate-trigger .rate-voted {
|
|
background: #f3f3f3;
|
|
border-color: #f3f3f3;
|
|
-webkit-box-shadow: inset 0.1em 0.1em 0.1em rgba(0, 0, 0, 0.4);
|
|
-moz-box-shadow: inset 0.1em 0.1em 0.1em rgba(0, 0, 0, 0.4);
|
|
box-shadow: inset 0.1em 0.1em 0.1em rgba(0, 0, 0, 0.4);
|
|
}
|
|
|
|
.commons-q-a-rate-up {
|
|
float: left;
|
|
padding-right: .2em;
|
|
}
|
|
|
|
.commons-q-a-rate-down {
|
|
float: right;
|
|
padding-left: .2em;
|
|
}
|
|
|
|
.rate-number-up-down-btn-up:before {
|
|
content: "+";
|
|
}
|
|
|
|
.rate-number-up-down-btn-down:before {
|
|
content: "-";
|
|
}
|