Commit 5e15470d authored by Evonne Cheung's avatar Evonne Cheung Committed by Robert Lyon
Browse files

Bug 1674518: Design changes for themes

Change-Id: Ib22e09ecc91221f5a42f2d2b16f614c8b067a84a
behatnotneeded: design changes only
parent ff4a9a9d
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -142,7 +142,7 @@ class PluginSearchElasticsearch extends PluginSearch {
                        ),
                        'submit' => array(
                            'type' => 'button',
                            'class' => 'btn-primary input-group-btn',
                            'class' => 'btn-default input-group-btn',
                            'usebuttontag' => true,
                            'value' => '<span class="icon icon-search icon-lg" role="presentation" aria-hidden="true"></span><span class="sr-only">'. get_string('go') . '</span>',
                        )
+1 −1
Original line number Diff line number Diff line
@@ -244,7 +244,7 @@ abstract class PluginSearch extends Plugin implements IPluginSearch {
                        ),
                        'submit' => array(
                            'type' => 'button',
                            'class' => 'btn-primary input-group-btn',
                            'class' => 'btn-default input-group-btn',
                            'usebuttontag' => true,
                            'value' => '<span class="icon icon-search icon-lg" role="presentation" aria-hidden="true"></span><span class="sr-only">'. get_string('go') . '</span>',
                        )
−1.99 KiB
Loading image diff...
+1 −29
Original line number Diff line number Diff line
// blog post headings
.myblogs {
    h1 {
        border-bottom: 0;
        padding-bottom: 0;
    }
    .h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 {
        font-weight: 700;
    }
    .list-group-item-heading {
        font-weight: 300;
    }
}

// viewfooter
.viewfooter {
    padding: 15px !important;
    padding: 15px;
    background-color: #f7f7f7;
    border-radius: 10px;
    margin-top: 20px;
    h3:first-child {
        margin-top: 0;
    }
    h4:first-child {
        margin-top: 0;
    }
    .pieform {
        .files {
            .btn {
                margin-left: 0; // fixes the attach file btn alignment
            }
        }
    }
}
+0 −8
Original line number Diff line number Diff line
.navbar-toggle {
    background-color: $link-color;
    &:hover,
    &:focus {
        border-color: $link-hover-color;
        background-color: $link-hover-color;
    }
}
Loading