Skip to content
This repository has been archived by the owner. It is now read-only.

Commit

Permalink
Browse files Browse the repository at this point in the history
UUP
  • Loading branch information
andrewmbacon committed Aug 25, 2014
1 parent 2bb35a1 commit a7a96a4
Show file tree
Hide file tree
Showing 2 changed files with 59 additions and 9 deletions.
35 changes: 31 additions & 4 deletions style.css
Expand Up @@ -7696,6 +7696,19 @@ q:before, table q:after {
content: ' ';
}

/*
Profile Page
*/
.uup-user > span {
display: block;
}
.uup-user .uup-name {
font-weight: bold;
}
.uup-user .uup-name .uup-first:after {
content: ' ';
}

/* - - - - - - - - - - - - - - - - - - -
== Calendar
- - - - - - - - - - - - - - - - - - - */
Expand Down Expand Up @@ -7994,8 +8007,7 @@ body {
font-weight: normal;
}

#masthead #site-navigation .navbar-collapse .nav > li.active:after,
#masthead #site-navigation .navbar-collapse .nav > li.current-menu-ancestor:after {
#masthead #site-navigation .navbar-collapse .nav > li.active:after, #masthead #site-navigation .navbar-collapse .nav > li.current-menu-ancestor:after {
-moz-border-bottom-colors: none;
-moz-border-left-colors: none;
-moz-border-right-colors: none;
Expand All @@ -8015,8 +8027,7 @@ body {
}

@media (max-width: 767px) {
#masthead #site-navigation .navbar-collapse .nav > li.active:after,
#masthead #site-navigation .navbar-collapse .nav > li.current-menu-parent:after {
#masthead #site-navigation .navbar-collapse .nav > li.active:after, #masthead #site-navigation .navbar-collapse .nav > li.current-menu-parent:after {
display: none;
}
}
Expand Down Expand Up @@ -8090,6 +8101,10 @@ body {
padding-right: 1em !important;
}
}
.entry-content .row {
margin: 0;
}

.form-control {
border-right: none;
box-shadow: none;
Expand Down Expand Up @@ -8153,3 +8168,15 @@ table .external .glyphicon-new-window {
margin-left: 0.4em !important;
opacity: 0.7 !important;
}

#vb #vb-timespan a {
margin: 0 0 0 .3em;
line-height: 2em;
}

#events-grid-wrap th {
width: 14.23%;
}
#events-grid-wrap th:first-child {
width: auto;
}
33 changes: 28 additions & 5 deletions style.scss
Expand Up @@ -18,7 +18,6 @@
#uc-site-header {
padding-left:15px;
}

#uc-header {
border-bottom-color:$header_border;
}
Expand Down Expand Up @@ -166,8 +165,7 @@ body {
}
}

#masthead #site-navigation .navbar-collapse .nav > li.active:after,
#masthead #site-navigation .navbar-collapse .nav > li.current-menu-ancestor:after {
#masthead #site-navigation .navbar-collapse .nav > li.active:after, #masthead #site-navigation .navbar-collapse .nav > li.current-menu-ancestor:after {
-moz-border-bottom-colors: none;
-moz-border-left-colors: none;
-moz-border-right-colors: none;
Expand All @@ -187,8 +185,7 @@ body {
}

@media (max-width: 767px) {
#masthead #site-navigation .navbar-collapse .nav > li.active:after,
#masthead #site-navigation .navbar-collapse .nav > li.current-menu-parent:after {
#masthead #site-navigation .navbar-collapse .nav > li.active:after, #masthead #site-navigation .navbar-collapse .nav > li.current-menu-parent:after {
display: none;
}
}
Expand Down Expand Up @@ -272,6 +269,11 @@ body {
}
}

.entry-content {
.row {
margin:0;
}
}

.form-control {
border-right:none;
Expand Down Expand Up @@ -342,3 +344,24 @@ table .external .glyphicon-new-window {
margin-left: 0.4em !important;
opacity: 0.7 !important;
}



// Events Calendar Grid

#vb {
#vb-timespan {
a {
margin:0 0 0 .3em;
line-height:2em;
}
}
}
#events-grid-wrap {
th {
width:14.23%;
}
th:first-child {
width:auto;
}
}

0 comments on commit a7a96a4

Please sign in to comment.