Skip to content

Commit

Permalink
Experiment using the OS' native font stack
Browse files Browse the repository at this point in the history
Following the steps of bfbfa4d,
experiment using the OS' native font stack.

Obtained from the Bootstrap project (twbs/bootstrap#19098,
twbs/bootstrap@0a31dac)
  • Loading branch information
jlduran authored and jdillard committed Aug 4, 2016
1 parent 6ab4354 commit 4310baa
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 6 deletions.
8 changes: 5 additions & 3 deletions src/usr/local/www/css/pfSense-BETA.css
Expand Up @@ -55,15 +55,17 @@
/*** Experimental Changes Go Here ***/

body {
font-size: 12px;
font-size: 12px;
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

.navbar-nav {
padding: 5px 5px 0px 5px;
}

table[data-sortable].sortable-theme-bootstrap {
font-size: 12px;
font-size: 12px;
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

.table>tbody>tr>td {
Expand Down Expand Up @@ -111,4 +113,4 @@ a.fa, i.fa {

.panel-heading {
padding: 5px 10px;
}
}
8 changes: 5 additions & 3 deletions src/usr/local/www/css/pfSense-dark-BETA.css
Expand Up @@ -55,15 +55,17 @@
/*** Experimental Changes Go Here ***/

body {
font-size: 12px;
font-size: 12px;
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

.navbar-nav {
padding: 5px 5px 0px 5px;
}

table[data-sortable].sortable-theme-bootstrap {
font-size: 12px;
font-size: 12px;
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

.table>tbody>tr>td {
Expand Down Expand Up @@ -115,4 +117,4 @@ a.fa, i.fa {

.panel-heading {
padding: 5px 10px;
}
}

0 comments on commit 4310baa

Please sign in to comment.