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

Changes for shortcode Calendar #77

Merged
merged 1 commit into from
Dec 18, 2014
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,3 +2,5 @@
_notes/dwsync.xml

inc/_notes/dwsync.xml

prepros.cfg
101 changes: 101 additions & 0 deletions sass/cal.scss
Original file line number Diff line number Diff line change
Expand Up @@ -53,3 +53,104 @@
}


// Style for Shortcode Calendar
#events-table{
// Toolbar
#vb.toolbar{
a{

}
ul.btn-multi{
margin-bottom:.5em;
li{
ul{
padding: 0px 0px 0px 12px;
li{
&.month-arrow{
a.icon{
span.glyphicons{
padding: 0px 0px 0px 5px;

&:before{
color:#fff;
font-size: 14px;
display:block;
position: relative;
}
}
}
}
}
}
a.btn-toggle{
margin-left:10px;
font-size:14px;
color:#777;
text-align: center;
}
}
}
}
// Calendar
#events-grid.table>tbody>tr>th{border: 1px solid #fff !important;}
#events-grid.table{
tbody{
tr{
&.list-days{
th{
text-align:center;
border:1px solid #eee !important;
background: #fff;
}
}
th{
width:14%;
border-top: 1px solid #eee !important;
border-left: 1px solid #eee;
border-right: 1px solid #eee;
background: #fff;
text-align:right;
span{
font-weight:normal;
color:#777;
font-size:12px !important;
abbr{
}
}
}
td{
border-left: 1px solid #eee;
border-right: 1px solid #eee;
border-bottom: 1px solid #eee;
background: #fff;
text-align:left;
height: 90px;
padding:1px;
ol.event-list{
li{
span.event-time{
font-size:11px !important;
padding: 0px 0px 0px 2px !important;
}
ol{
padding: 0px 2px 0px 2px !important;
li{
background: rgba(15,25,56, 0.1);
border:1px solid rgba(15,25,56, 0.2) !important;
padding: 0px 3px 0px 3px !important;
margin-bottom: 2px !important;
a.event-link{
strong{
font-weight:normal;
font-size:12px !important;
}
}
}
}
}
}
}
}
}
}
}
2 changes: 1 addition & 1 deletion sass/variables.scss
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ $megafooter-widget-head-color: $footers-color !default;

$uc-footer-link-color: $footers-link-color !default;
$uc-footer-link-hover: $footers-link-hover !default;
$uc-footer-link-spacing: 1em !default;;
$uc-footer-link-spacing: 1em !default;


@mixin uc-cal() {
Expand Down
Loading