mediawiki-extensions-Multim.../resources/mmv/ui/mmv.ui.stripeButtons.less
Gergő Tisza 5e3808a14e Make the metadata panel opening affordance more obvious
- rearrange DOM structure of above-fold part of the metadata panel:
  - rename .mw-mmv-controls to .mw-mmv-above-fold
  - the above-fold part is a single positioned div now, with height
    explitcitly set
  - less LESS gymnastics, above-fold height is a single variable
  - add paddings to the p elements instead of the containers
  - make all title elements align to baseline (except the logo which
    would look horrible)
- discard some CSS which was superfluous
  - overspecified sizes/positions
  - some top/bottoms for staticly positioned elements
- get rid of the .mw-mmv-drag-affordance div, since a full-width bar
  wouldn't really make sense on the bottom of the above-fold section
- flip the chevron and place it to the bottom of the above-fold part;
  add colors etc. per spec
- fix stripe button horizontal spacing

Mingle: https://wikimedia.mingle.thoughtworks.com/projects/multimedia/cards/706
Change-Id: Ic37b4150288055c3fae8d22919ed7b1249db1f09
2014-06-19 21:14:56 +00:00

86 lines
2 KiB
Plaintext

@import "../mmv.globals";
@import "../mmv.mixins";
@button-vertical-padding: 15px;
@button-height: 25px;
// The buttons need to be positioned to the bottom right corner of .mw-mmv-title-contain, and
// other text in that element must not overlap them. Their width is not known (depends on the
// translation) so we float them to the right and calculate the top margin required to make them
// full height.
.mw-mmv-stripe-button {
@button-text-color: rgb(136, 136, 136);
@border-text-color: #cccccc;
float: right;
height: @button-height;
margin-top: @metadatabar-above-fold-height - ( @button-height + 2 * @button-vertical-padding );
.jq-fullscreened & {
margin-top: @metadatabar-above-fold-fullscreen-height - ( @button-height + 2 * @button-vertical-padding );
}
border-left: 1px solid @border-text-color;
padding: @button-vertical-padding 20px;
.unselectable;
font-size: 1.25em;
color: @button-text-color;
cursor: pointer;
.opacity(0.8);
transition: opacity 0.25s;
// when the button is a link, we need more selector specificity
a&, a&:visited, a&:hover {
color: @button-text-color;
}
&.empty {
display: none;
}
&.open,
&:hover {
.opacity(1);
}
&:before {
display: inline-block;
width: 1em;
height: 1em;
// fix odd position caused by bottom of icon and bottom of SVG not being aligned
position: relative;
top: 0.1em;
background-size: 100% 100%;
content: ' ';
vertical-align: baseline;
}
}
.mw-mmv-stripe-button-reuse:before {
/* @embed */
background-image: url(img/use-ltr.svg);
}
.mw-mmv-stripe-button-feedback:before {
/* @embed */
background-image: url(img/horn_grey.svg);
background-size: 100%;
}
.mw-mmv-stripe-button-commons:before {
/* @embed */
background-image: url(img/commons_gray.svg);
padding: 1px;
top: -1px;
}
// for othe repos than Wikimedia Commons we manipulate :before dynamically from JS
.mw-mmv-stripe-button-dynamic:before {
.grayscale;
width: 0.8em;
height: 0.8em;
background-image: url(img/repo.svg);
}