Feature #19097 » 0004-Style-contextual-buttons.patch
| public/stylesheets/responsive.css | ||
|---|---|---|
| 11 | 11 |
B) HEADER & TOP MENUS |
| 12 | 12 |
C) MAIN CONTENT & SIDEBAR |
| 13 | 13 |
D) TOGGLE BUTTON & FLYOUT MENU |
| 14 |
E) UX ELEMENTS |
|
| 14 | 15 |
*/ |
| ... | ... | |
| 608 | 609 |
background-position: 8px 50%; |
| 609 | 610 |
} |
| 611 | ||
| 612 |
/*----------------------------------------*\ |
|
| 613 |
E) UX ELEMENTS |
|
| 614 |
\*----------------------------------------*/ |
|
| 615 | ||
| 616 |
/* Contextual Buttons */ |
|
| 617 | ||
| 618 |
.contextual |
|
| 619 |
{
|
|
| 620 |
width: 100%; |
|
| 621 |
margin-bottom: .5em; |
|
| 622 |
padding-left: 0; /* reset left padding in order to use whole space */ |
|
| 623 | ||
| 624 |
white-space: normal; |
|
| 625 | ||
| 626 |
color: transparent; |
|
| 627 |
} |
|
| 628 | ||
| 629 |
.contextual a, |
|
| 630 |
p.buttons a |
|
| 631 |
{
|
|
| 632 |
font-weight: bold; |
|
| 633 | ||
| 634 |
display: inline-block; |
|
| 635 | ||
| 636 |
margin: 5px 0; |
|
| 637 |
margin-right: 2px; |
|
| 638 |
padding: 9px 9px 9px 9px; |
|
| 639 | ||
| 640 |
border: 1px solid #ddd; |
|
| 641 |
-webkit-border-radius: 3px; |
|
| 642 |
border-radius: 3px; |
|
| 643 |
background-color: transparent; |
|
| 644 |
background-position-x: 4px; |
|
| 645 |
} |
|
| 646 | ||
| 647 |
.contextual a.icon, |
|
| 648 |
p.buttons a.icon |
|
| 649 |
{
|
|
| 650 |
padding-left: 25px; |
|
| 651 |
} |
|
| 652 | ||
| 653 |
.flyout-menu .contextual |
|
| 654 |
{
|
|
| 655 |
float: none; |
|
| 656 |
} |
|
| 657 | ||
| 658 |
#issue_tree .contextual a, |
|
| 659 |
#relations .contextual a |
|
| 660 |
{
|
|
| 661 |
float: right; |
|
| 662 |
} |
|
| 663 | ||
| 610 | 664 |
} |