Skip to content
This repository has been archived by the owner on Jul 30, 2022. It is now read-only.

Commit

Permalink
Merge pull request #322 from Hutchy68/develop
Browse files Browse the repository at this point in the history
- Addressing concerns in issue #314
- Travis update
  • Loading branch information
Hutchy68 authored Feb 14, 2018
2 parents 773be35 + 72235cc commit 06eb3ee
Show file tree
Hide file tree
Showing 2 changed files with 63 additions and 20 deletions.
12 changes: 10 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,11 +1,19 @@
language: php

php:
- 7
- 7.2
- 7.1
- 7.0
- 5.6
- hhvm
- nightly


matrix:
fast_finish: true
allow_failures:
- php: hhvm
- php: nightly

sudo: false

install:
Expand Down
71 changes: 53 additions & 18 deletions assets/stylesheets/foreground.css
Original file line number Diff line number Diff line change
Expand Up @@ -204,8 +204,53 @@ ul#actions.f-dropdown {
margin-bottom: .25em;
padding: .25em;
}
#mw-content-text ul {
margin: .5em 1.25em;

dl {
margin-bottom: 0em;
margin-top: .75em;
}

/* Override MW legacy.module for all skins styling of ul and ol */
.mw-content-ltr ul,
.mw-content-rtl .mw-content-ltr ul {
/* @noflip */
margin: 0.5em 0 0 2em;
padding: 0;
}

.mw-content-rtl ul,
.mw-content-ltr .mw-content-rtl ul {
/* @noflip */
margin: 0.5em 2em 0 0;
padding: 0;
}

.mw-content-ltr ol,
.mw-content-rtl .mw-content-ltr ol {
/* @noflip */
margin: 0.5em 0 0 2em;
padding: 0;
}

.mw-content-rtl ol,
.mw-content-ltr .mw-content-rtl ol {
/* @noflip */
margin: 0.5em 2em 0 0;
padding: 0;
}

/* @noflip */
.mw-content-ltr dd,
.mw-content-rtl .mw-content-ltr dd {
margin-left: 1.6em;
margin-right: 0;
}

/* @noflip */
.mw-content-rtl dd,
.mw-content-ltr .mw-content-rtl dd {
margin-right: 1.6em;
margin-left: 0;
}

/* Tabs */
Expand Down Expand Up @@ -605,14 +650,16 @@ div.mw-htmlform-field-HTMLCheckField div.mw-label {

/* firstHeading Fix */

h1#firstHeading {
font-size: 2.125rem;
margin: 0;
}

@media only screen and (min-width: 40.0625em) {
h1#firstHeading {
font-size: 2.75rem;
}
}
h1#firstHeading {
font-size: 2.125rem;
}

/* Don't like the black top bar? Copy this into your Foreground.css and change the colors
Expand Down Expand Up @@ -844,18 +891,6 @@ div#userloginprompt, p#userloginlink {
font-size: 80%;
}

/* LISTS */

ul#actions.f-dropdown {
margin-left: 0;
margin-top: .5em;
margin-bottom: .25em;
padding: .25em;
}
#mw-content-text ul {
margin: .5em 1.25em;
}

/* make sure orbit image slider has no margins */

#mw-content-text .orbit-container ul {
Expand Down Expand Up @@ -1008,7 +1043,7 @@ ul.vcard {
/* HEADERS */

h1, h2, h3, h4, h5, h6 {
margin-top: 0em;
margin-top: .75em;
line-height: 1em;
}
.page-Special_SpecialPages h2 {
Expand Down

0 comments on commit 06eb3ee

Please sign in to comment.