Real initial commit
Set real eMail-Address
This commit is contained in:
4
public/stylesheets/.directory
Normal file
4
public/stylesheets/.directory
Normal file
@@ -0,0 +1,4 @@
|
||||
[Dolphin]
|
||||
Timestamp=2016,9,3,17,48,10
|
||||
Version=3
|
||||
ViewMode=1
|
||||
9
public/stylesheets/bootstrap-datepicker.min.css
vendored
Normal file
9
public/stylesheets/bootstrap-datepicker.min.css
vendored
Normal file
File diff suppressed because one or more lines are too long
6
public/stylesheets/bootstrap-theme.min.css
vendored
Normal file
6
public/stylesheets/bootstrap-theme.min.css
vendored
Normal file
File diff suppressed because one or more lines are too long
6
public/stylesheets/bootstrap.min.css
vendored
Normal file
6
public/stylesheets/bootstrap.min.css
vendored
Normal file
File diff suppressed because one or more lines are too long
10
public/stylesheets/jquery.loading.min.css
vendored
Normal file
10
public/stylesheets/jquery.loading.min.css
vendored
Normal file
@@ -0,0 +1,10 @@
|
||||
/*
|
||||
* jquery-easy-loading - v1.2.0
|
||||
* Easily add and manipulate loading states of any element on the page
|
||||
* http://github.com/CarlosBonetti/jquery-loading
|
||||
*
|
||||
* Made by Carlos Bonetti <carlosb_bc@hotmail.com>
|
||||
* Under MIT License
|
||||
*/
|
||||
|
||||
.loading-overlay{display:table;opacity:.7}.loading-overlay-content{text-transform:uppercase;letter-spacing:.4em;font-size:1.15em;font-weight:700;text-align:center;display:table-cell;vertical-align:middle}.loading-overlay.loading-theme-light{background-color:#fff;color:#000}.loading-overlay.loading-theme-dark{background-color:#000;color:#fff}
|
||||
53
public/stylesheets/mytypeahead.css
Normal file
53
public/stylesheets/mytypeahead.css
Normal file
@@ -0,0 +1,53 @@
|
||||
.twitter-typeahead {
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
.twitter-typeahead .tt-query,
|
||||
.twitter-typeahead .tt-hint {
|
||||
margin-bottom: 0;
|
||||
}
|
||||
|
||||
.tt-hint {
|
||||
display: block;
|
||||
width: 100%;
|
||||
height: 34px; /* 38px;*/
|
||||
padding: 6px 12px; /* 8px 12px; */
|
||||
font-size: 14px;
|
||||
line-height: 1.42857143; /* 1.428571429; */
|
||||
color: #999;
|
||||
vertical-align: middle;
|
||||
background-color: #ffffff;
|
||||
border: 1px solid #cccccc;
|
||||
border-radius: 4px;
|
||||
-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
|
||||
box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
|
||||
-webkit-transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
|
||||
transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
|
||||
}
|
||||
.tt-menu {
|
||||
min-width: 160px;
|
||||
margin-top: 2px;
|
||||
padding: 5px 0;
|
||||
background-color: #ffffff;
|
||||
border: 1px solid #cccccc;
|
||||
border: 1px solid rgba(0, 0, 0, 0.15);
|
||||
border-radius: 4px;
|
||||
-webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
|
||||
box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
|
||||
background-clip: padding-box;
|
||||
|
||||
}
|
||||
.tt-suggestion {
|
||||
display: block;
|
||||
padding: 3px 20px;
|
||||
}
|
||||
.tt-suggestion:hover {
|
||||
color: #fff;
|
||||
background-color: #428bca;
|
||||
}
|
||||
.tt-suggestion.hover a {
|
||||
color: #fff;
|
||||
}
|
||||
.tt-suggestion p {
|
||||
margin: 0;
|
||||
}
|
||||
504
public/stylesheets/style.css
Normal file
504
public/stylesheets/style.css
Normal file
@@ -0,0 +1,504 @@
|
||||
html {
|
||||
height: 100%;
|
||||
}
|
||||
|
||||
body {
|
||||
padding: 0px;
|
||||
font-family: "Carlito", "Lucida Grande", Helvetica, Arial, sans-serif;
|
||||
/*overflow: hidden;*/
|
||||
}
|
||||
|
||||
.sidewideoverlay {
|
||||
display: none;
|
||||
position: absolute;
|
||||
top: 0;
|
||||
bottom: 0;
|
||||
left: 0;
|
||||
right: 0;
|
||||
background-color: white;
|
||||
}
|
||||
|
||||
@media only screen and (min-width: 768px) {
|
||||
body {
|
||||
height: 100%;
|
||||
width: 100%;
|
||||
overflow: hidden;
|
||||
}
|
||||
}
|
||||
|
||||
.display_none_on_small_devices {}
|
||||
|
||||
@media only screen and (max-width: 768px) {
|
||||
.display_none_on_small_devices {
|
||||
display: none;
|
||||
}
|
||||
}
|
||||
|
||||
.root {
|
||||
position: absolute;
|
||||
top: 0;
|
||||
bottom: 0;
|
||||
left: 0;
|
||||
right: 0;
|
||||
/*overflow: auto;*/
|
||||
}
|
||||
|
||||
.subroot {}
|
||||
.new_flex_zero {}
|
||||
.new_flex_one {}
|
||||
.new_flex_two {}
|
||||
/* full_height is for use if a page has a dropdown or auto-complete which would be otherwise not fully visible! */
|
||||
.full_height {}
|
||||
|
||||
@media only screen and (min-width: 768px) {
|
||||
|
||||
.root {
|
||||
display: -ms-flexbox;
|
||||
display: -webkit-flex;
|
||||
display: flex;
|
||||
webkit-flex-direction: column;
|
||||
ms-flex-direction: column;
|
||||
flex-direction: column;
|
||||
-webkit-flex-wrap: nowrap;
|
||||
-ms-flex-wrap: nowrap;
|
||||
flex-wrap: nowrap;
|
||||
-webkit-justify-content: flex-start;
|
||||
-ms-flex-pack: start;
|
||||
justify-content: flex-start;
|
||||
-webkit-align-content: flex-start;
|
||||
-ms-flex-line-pack: start;
|
||||
align-content: flex-start;
|
||||
-webkit-align-items: stretch;
|
||||
-ms-flex-align: stretch;
|
||||
align-items: stretch;
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
.subroot {
|
||||
display: -ms-flexbox;
|
||||
display: -webkit-flex;
|
||||
display: flex;
|
||||
webkit-flex-direction: column;
|
||||
ms-flex-direction: column;
|
||||
flex-direction: column;
|
||||
-webkit-flex-wrap: nowrap;
|
||||
-ms-flex-wrap: nowrap;
|
||||
flex-wrap: nowrap;
|
||||
-webkit-justify-content: flex-start;
|
||||
-ms-flex-pack: start;
|
||||
justify-content: flex-start;
|
||||
-webkit-align-content: flex-start;
|
||||
-ms-flex-line-pack: start;
|
||||
align-content: flex-start;
|
||||
-webkit-align-items: stretch;
|
||||
-ms-flex-align: stretch;
|
||||
align-items: stretch;
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
.full_height { height: 100%; }
|
||||
|
||||
.new_flex_zero {
|
||||
-webkit-order: 0;
|
||||
-ms-flex-order: 0;
|
||||
order: 0;
|
||||
-webkit-flex: 0 0 auto;
|
||||
-ms-flex: 0 0 auto;
|
||||
flex: 0 0 auto;
|
||||
-webkit-align-self: auto;
|
||||
-ms-flex-item-align: auto;
|
||||
align-self: auto;
|
||||
}
|
||||
|
||||
.new_flex_one {
|
||||
-webkit-order: 0;
|
||||
-ms-flex-order: 0;
|
||||
order: 0;
|
||||
-webkit-flex: 5 1 auto;
|
||||
-ms-flex: 5 1 auto;
|
||||
flex: 5 1 auto;
|
||||
-webkit-align-self: auto;
|
||||
-ms-flex-item-align: auto;
|
||||
align-self: auto;
|
||||
overflow: auto;
|
||||
}
|
||||
|
||||
.new_flex_two {
|
||||
-webkit-order: 0;
|
||||
-ms-flex-order: 0;
|
||||
order: 0;
|
||||
-webkit-flex: 2 1 40%;
|
||||
-ms-flex: 2 1 40%;
|
||||
flex: 2 1 40%;
|
||||
-webkit-align-self: auto;
|
||||
-ms-flex-item-align: auto;
|
||||
align-self: auto;
|
||||
overflow: auto;
|
||||
}
|
||||
}
|
||||
|
||||
h1 { margin-top: 10px; }
|
||||
|
||||
@media only screen and (max-width: 768px) {
|
||||
h1 {
|
||||
font-size: 24px;
|
||||
margin-top: 10px;
|
||||
margin-bottom: 5px;
|
||||
}
|
||||
}
|
||||
|
||||
.buttonbox_back_forward {
|
||||
/*padding-left: 15px; */
|
||||
/*padding-right: 15px; */
|
||||
/*text-align: right;*/
|
||||
padding-left: 15px;
|
||||
margin-bottom: 10px;
|
||||
}
|
||||
|
||||
.parishdbelemspane {
|
||||
display: -ms-flexbox;
|
||||
display: -webkit-flex;
|
||||
display: flex;
|
||||
-webkit-flex-direction: row;
|
||||
-ms-flex-direction: row;
|
||||
flex-direction: row;
|
||||
-webkit-flex-wrap: wrap;
|
||||
-ms-flex-wrap: wrap;
|
||||
flex-wrap: wrap;
|
||||
-webkit-justify-content: flex-start;
|
||||
-ms-flex-pack: start;
|
||||
justify-content: flex-start;
|
||||
-webkit-align-content: flex-start;
|
||||
-ms-flex-line-pack: start;
|
||||
align-content: flex-start;
|
||||
-webkit-align-items: flex-start;
|
||||
-ms-flex-align: start;
|
||||
align-items: flex-start;
|
||||
}
|
||||
|
||||
.parishdbelemspane_elem {
|
||||
-webkit-order: 0;
|
||||
-ms-flex-order: 0;
|
||||
order: 0;
|
||||
-webkit-flex: 0 1 auto;
|
||||
-ms-flex: 0 1 auto;
|
||||
flex: 0 1 auto;
|
||||
-webkit-align-self: auto;
|
||||
-ms-flex-item-align: auto;
|
||||
align-self: auto;
|
||||
padding-left: 0px;
|
||||
padding-right: 0px;
|
||||
/* margin-left: 2px;
|
||||
margin-right: 2px;
|
||||
margin-bottom: 5px;*/
|
||||
margin-bottom: 0px;
|
||||
}
|
||||
|
||||
.parishdbelemspane_elem_kontext {
|
||||
font-size: 75%;
|
||||
margin-bottom: 0px;
|
||||
}
|
||||
|
||||
.parishdbelemspane_elem_role {
|
||||
font-size: 75%;
|
||||
margin-bottom: 0px;
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
.container-horizontal {
|
||||
height: 100%;
|
||||
width: 100%;
|
||||
display: -ms-flexbox;
|
||||
display: -webkit-box;
|
||||
display: -moz-box;
|
||||
display: -ms-box;
|
||||
display: box;
|
||||
|
||||
-ms-flex-direction: row;
|
||||
-webkit-box-orient: horizontal;
|
||||
-moz-box-orient: horizontal;
|
||||
-ms-box-orient: horizontal;
|
||||
box-orient: horizontal;
|
||||
}
|
||||
|
||||
.container-vertical {
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
display: -ms-flexbox;
|
||||
display: -webkit-box;
|
||||
display: -moz-box;
|
||||
display: -ms-box;
|
||||
display: box;
|
||||
|
||||
-ms-flex-direction: column;
|
||||
-webkit-box-orient: vertical;
|
||||
-moz-box-orient: vertical;
|
||||
-ms-box-orient: vertical;
|
||||
box-orient: vertical;
|
||||
}
|
||||
|
||||
|
||||
.flex-zero {
|
||||
/* width: 200px;
|
||||
height: 100px;*/
|
||||
/* -ms-flex: 0 100px;*/
|
||||
-webkit-box-flex: 0;
|
||||
-moz-box-flex: 0;
|
||||
-ms-box-flex: 0;
|
||||
box-flex: 0;
|
||||
}
|
||||
|
||||
.flex-one {
|
||||
-ms-flex: 1;
|
||||
-webkit-box-flex: 1;
|
||||
-moz-box-flex: 1;
|
||||
-ms-box-flex: 1;
|
||||
box-flex: 1;
|
||||
overflow: auto;
|
||||
/* height: 100%;*/
|
||||
}
|
||||
|
||||
a {
|
||||
color: #00B7FF;
|
||||
outline: none;
|
||||
}
|
||||
|
||||
a:focus {
|
||||
outline: none;
|
||||
}
|
||||
|
||||
.a_button {
|
||||
font-size: 15pt;
|
||||
margin: 10px;
|
||||
background-color: #BDDFFF;
|
||||
border-radius: 15px;
|
||||
color: #5893FF;
|
||||
padding: 8px;
|
||||
}
|
||||
|
||||
.litpanel_arrow {
|
||||
font-size: 12pt;
|
||||
/*margin-left: 10px;
|
||||
margin-right: 10px;*/
|
||||
cursor: pointer;
|
||||
color: black;
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
a:hover {
|
||||
text-decoration: underline;
|
||||
}
|
||||
|
||||
.litpanel_red {
|
||||
color: red;
|
||||
}
|
||||
|
||||
.litpanel_black {
|
||||
color: black;
|
||||
}
|
||||
|
||||
.litpanel_bold {
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
.litpanel_italic {
|
||||
font-style: italic;
|
||||
}
|
||||
|
||||
.litpanel_month_week_weekday {
|
||||
font-size: 9pt;
|
||||
line-height: 11pt;
|
||||
}
|
||||
|
||||
.litpanel_day {
|
||||
font-size: 26pt;
|
||||
line-height: 28pt;
|
||||
font-weight: bold;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.litpanel_day_mobile {
|
||||
font-size: 12pt;
|
||||
line-height: 12pt;
|
||||
font-weight: bold;
|
||||
text-align: center;
|
||||
/*margin: 10px;*/
|
||||
}
|
||||
|
||||
.litpanel_day_mobile_littime {
|
||||
font-size: 8pt;
|
||||
line-height: 10pt;
|
||||
font-style: italic;
|
||||
}
|
||||
|
||||
.litpanel_infos {
|
||||
font-size: 9pt;
|
||||
color: blue;
|
||||
}
|
||||
|
||||
.litpanel_celebration {
|
||||
font-size: 10pt;
|
||||
line-height: 11pt;
|
||||
}
|
||||
|
||||
.litpanel_celebration_parent {
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.litpanel_celebration_add
|
||||
{
|
||||
font-size: 8pt;
|
||||
line-height: 10pt;
|
||||
margin-top: 0px;
|
||||
margin-bottom: 0px;
|
||||
}
|
||||
|
||||
/* INDEX T_ODO */
|
||||
|
||||
.todo {
|
||||
background-color: #BDDFFF;
|
||||
padding: 8px;
|
||||
border-radius: 15px;
|
||||
color: #5893FF;
|
||||
margin-bottom: 5px;
|
||||
}
|
||||
|
||||
.daymanager_todo_headline {
|
||||
font-size: 12pt;
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
.daymanager_todo_involved {
|
||||
font-size: 9pt;
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
/* INDEX KEEP_IN_MIND */
|
||||
|
||||
.keep_in_mind {
|
||||
background-color: #DDFFBB;
|
||||
padding: 8px;
|
||||
border-radius: 15px;
|
||||
color: #15D715;
|
||||
margin-bottom: 5px;
|
||||
}
|
||||
|
||||
.daymanager_keep_in_mind_headline {
|
||||
font-size: 12pt;
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
/* INDEX AWAY */
|
||||
|
||||
.away {
|
||||
background-color: #FFBBBB;
|
||||
padding: 8px;
|
||||
border-radius: 15px;
|
||||
color: #FF5050;
|
||||
margin-bottom: 5px;
|
||||
}
|
||||
|
||||
.daymanager_away_headline {
|
||||
/* color: darkred; */
|
||||
font-size: 12pt;
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
/* INDEX VEHICHLE_USE */
|
||||
|
||||
.vehicle_use {
|
||||
background-color: #FFF4C1;
|
||||
padding: 8px;
|
||||
border-radius: 15px;
|
||||
color: #FF8A3C;
|
||||
margin-bottom: 5px;
|
||||
}
|
||||
|
||||
.daymanager_vehicle_use_involved {
|
||||
font-size: 9pt;
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
.daymanager_vehicle_use_headline {
|
||||
font-size: 12pt;
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
|
||||
/* */
|
||||
/*
|
||||
.pastoralunit_mobile {
|
||||
font-weight: bold;
|
||||
font-size: 10pt;
|
||||
margin: 2pt;
|
||||
}*/
|
||||
|
||||
.arrowup:after {
|
||||
content: "\25BC";
|
||||
}
|
||||
.arrowdown:after {
|
||||
content: "\25B2";
|
||||
}
|
||||
|
||||
.pentry_details { display: none; }
|
||||
|
||||
.pentryedit_headline {
|
||||
padding-left: 15px;
|
||||
padding-right: 15px;
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
.pentryedit_subheadline, .pentryedit_subheadline_with_padding {
|
||||
font-style: italic;
|
||||
}
|
||||
|
||||
.pentryedit_subheadline_with_padding {
|
||||
padding-left: 15px;
|
||||
padding-right: 15px;
|
||||
}
|
||||
|
||||
@media only screen and (max-width: 768px) {
|
||||
.navbar { margin-bottom: 5px; }
|
||||
.pentryedit_headline, .pentryedit_subheadline { margin-bottom: 2px; font-size: 90%; }
|
||||
.form-horizontal .control-label { padding-top: 7px; margin-bottom: 0; text-align: right; }
|
||||
.form-group { margin-bottom: 8px; }
|
||||
}
|
||||
|
||||
/* http://www.mentful.com/2014/06/22/fixed-search-navbar-with-bootstrap-3-0/ */
|
||||
@media(max-width:767px) {
|
||||
.navbar .navbar-form {
|
||||
width: 185px;
|
||||
padding-left:0;
|
||||
padding-right:0;
|
||||
}
|
||||
}
|
||||
@media(min-width:768px) {
|
||||
.navbar .navbar-form {
|
||||
width: 250px;
|
||||
}
|
||||
}
|
||||
.navbar .navbar-form {
|
||||
padding-top: 0;
|
||||
padding-bottom: 0;
|
||||
margin-right: 0;
|
||||
margin-left: 0;
|
||||
border: 0;
|
||||
-webkit-box-shadow: none;
|
||||
box-shadow: none;
|
||||
}
|
||||
|
||||
.pager li > span:hover {
|
||||
text-decoration: none;
|
||||
background-color: #eee;
|
||||
color: #23527c;
|
||||
}
|
||||
|
||||
.pager li > span {
|
||||
color: #00B7FF;
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
.pager .disabled > span:hover {
|
||||
background-color: #fff;
|
||||
color: #777;
|
||||
}
|
||||
81
public/stylesheets/style_day.css
Normal file
81
public/stylesheets/style_day.css
Normal file
@@ -0,0 +1,81 @@
|
||||
.eventbox {
|
||||
padding: 8px;
|
||||
border-radius: 15px;
|
||||
margin-bottom: 5px;
|
||||
}
|
||||
|
||||
.eventbox_punit_name {
|
||||
color: darkblue;
|
||||
font-size: 9pt;
|
||||
font-weight: bold;
|
||||
font-style: italic;
|
||||
}
|
||||
|
||||
.eventbox_time {
|
||||
text-align: left;
|
||||
/*width: 65%;*/
|
||||
/*float: left;*/
|
||||
font-weight: bold;
|
||||
font-style: italic;
|
||||
}
|
||||
.timelineevent_time {
|
||||
font-size: 65%;
|
||||
}
|
||||
|
||||
.eventbox_visibility, .timelineevent_visibility {
|
||||
text-align: right;
|
||||
/*width: 15%;*/
|
||||
/*float: right;*/
|
||||
font-weight: bold;
|
||||
}
|
||||
.timelineevent_visibility {
|
||||
font-size: 65%;
|
||||
}
|
||||
|
||||
.eventbox_name, .timelineevent_name {
|
||||
font-size: 115%;
|
||||
font-weight: bold;
|
||||
margin-bottom: 1px;
|
||||
margin-top: -3px;
|
||||
}
|
||||
.timelineevent_name {
|
||||
font-size: 85%;
|
||||
margin-bottom: 0px;
|
||||
}
|
||||
|
||||
.eventbox_name_secondary, .timelineevent_name_secondary {
|
||||
font-size: 75%;
|
||||
font-weight: bold;
|
||||
}
|
||||
.timelineevent_name_secondary {
|
||||
font-size: 75%;
|
||||
}
|
||||
|
||||
.eventbox_locations, .timelineevent_locations {
|
||||
font-size: 90%;
|
||||
color: darkblue;
|
||||
font-weight: bold;
|
||||
margin-bottom: 0px;
|
||||
}
|
||||
.timelineevent_locations {
|
||||
font-size: 70%;
|
||||
}
|
||||
|
||||
.eventbox_involved, .timelineevent_involved {
|
||||
font-size: 90%;
|
||||
color: green;
|
||||
font-style: italic;
|
||||
margin-bottom: 0px;
|
||||
}
|
||||
.timelineevent_involved {
|
||||
font-size: 70%;
|
||||
}
|
||||
|
||||
.eventbox_description {
|
||||
margin-top: 2px;
|
||||
margin-bottom: 2px;
|
||||
}
|
||||
|
||||
.eventbox_annotations {
|
||||
font-size: 90%;
|
||||
}
|
||||
133
public/stylesheets/style_week.css
Normal file
133
public/stylesheets/style_week.css
Normal file
@@ -0,0 +1,133 @@
|
||||
.week_celebration {
|
||||
font-weight: bold;
|
||||
font-size: 105%;
|
||||
}
|
||||
|
||||
.week_celebration_stage1 {
|
||||
font-size: 110%;
|
||||
}
|
||||
|
||||
.week_celebration_stage2 {
|
||||
font-size: 115%;
|
||||
font-style: italic;
|
||||
}
|
||||
|
||||
.new_day_begins {
|
||||
border-bottom: 1px
|
||||
solid #000;
|
||||
}
|
||||
|
||||
tr.new_day_begins > td {
|
||||
padding-top: 2px;
|
||||
}
|
||||
|
||||
.td_last_column {
|
||||
padding-left: 4px;
|
||||
vertical-align: top;
|
||||
}
|
||||
|
||||
.td_new_celebration {
|
||||
vertical-align: top;
|
||||
}
|
||||
|
||||
.td_time {
|
||||
width: 8%;
|
||||
text-align: right;
|
||||
vertical-align: top;
|
||||
padding-right: 4px;
|
||||
}
|
||||
|
||||
.td_locsign {
|
||||
width: 5%;
|
||||
vertical-align: top;
|
||||
padding-right: 4px;
|
||||
padding-left: 5px;
|
||||
}
|
||||
|
||||
.week_time_start, .week_pentrytitle {
|
||||
font-size: 105%;
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
.week_time_start {
|
||||
white-space: nowrap;
|
||||
}
|
||||
|
||||
.week_time_end {
|
||||
font-size: 90%;
|
||||
font-style: italic;
|
||||
font-weight: bold;
|
||||
white-space: nowrap;
|
||||
margin-bottom: 0pt;
|
||||
}
|
||||
|
||||
.week_event_name {
|
||||
font-size: 105%;
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
.week_event_locations {
|
||||
font-size: 10pt;
|
||||
color: darkblue;
|
||||
margin-bottom: 0pt;
|
||||
}
|
||||
|
||||
.week_event_involved {
|
||||
font-size: 10pt;
|
||||
color: green;
|
||||
font-style: italic; margin-bottom: 0pt;
|
||||
}
|
||||
|
||||
.week_subheadline {
|
||||
color: black;
|
||||
margin-bottom: 0px;
|
||||
}
|
||||
|
||||
.week_additional_info {
|
||||
font-size: 9pt;
|
||||
margin-bottom: 0px;
|
||||
color: black;
|
||||
}
|
||||
|
||||
tr.tr_new_pcalentry > td, tr.tr_new_pcalentry_without_bottomline > td {
|
||||
padding-top: 3px;
|
||||
padding-bottom: 3px;
|
||||
}
|
||||
|
||||
tr.tr_new_pcalentry > td, tr.tr_thereafter_with_bottomline {
|
||||
border-bottom: 1px solid lightgrey;
|
||||
}
|
||||
|
||||
@media only screen and (min-width: 768px) {
|
||||
.week_celebration {
|
||||
font-weight: bold;
|
||||
font-size: 115%;
|
||||
}
|
||||
|
||||
.week_celebration_stage1 {
|
||||
font-size: 120%;
|
||||
}
|
||||
|
||||
.week_celebration_stage2 {
|
||||
font-size: 125%;
|
||||
font-style: italic;
|
||||
}
|
||||
|
||||
.td_new_celebration {
|
||||
padding-top: 20px;
|
||||
}
|
||||
|
||||
.week_time_start, .week_pentrytitle {
|
||||
font-size: 115%;
|
||||
white-space: nowrap;
|
||||
}
|
||||
|
||||
.week_event_name {
|
||||
font-size: 115%;
|
||||
}
|
||||
|
||||
tr.tr_new_pcalentry > td {
|
||||
padding-top: 7px;
|
||||
padding-bottom: 7px;
|
||||
}
|
||||
}
|
||||
49
public/stylesheets/typeahead.js-bootstrap.css
Normal file
49
public/stylesheets/typeahead.js-bootstrap.css
Normal file
@@ -0,0 +1,49 @@
|
||||
.twitter-typeahead .tt-query,
|
||||
.twitter-typeahead .tt-hint {
|
||||
margin-bottom: 0;
|
||||
}
|
||||
|
||||
.tt-dropdown-menu {
|
||||
min-width: 160px;
|
||||
margin-top: 2px;
|
||||
padding: 5px 0;
|
||||
background-color: #fff;
|
||||
border: 1px solid #ccc;
|
||||
border: 1px solid rgba(0,0,0,.2);
|
||||
*border-right-width: 2px;
|
||||
*border-bottom-width: 2px;
|
||||
-webkit-border-radius: 6px;
|
||||
-moz-border-radius: 6px;
|
||||
border-radius: 6px;
|
||||
-webkit-box-shadow: 0 5px 10px rgba(0,0,0,.2);
|
||||
-moz-box-shadow: 0 5px 10px rgba(0,0,0,.2);
|
||||
box-shadow: 0 5px 10px rgba(0,0,0,.2);
|
||||
-webkit-background-clip: padding-box;
|
||||
-moz-background-clip: padding;
|
||||
background-clip: padding-box;
|
||||
}
|
||||
|
||||
.tt-suggestion {
|
||||
display: block;
|
||||
padding: 3px 20px;
|
||||
}
|
||||
|
||||
.tt-suggestion.tt-is-under-cursor {
|
||||
color: #fff;
|
||||
background-color: #0081c2;
|
||||
background-image: -moz-linear-gradient(top, #0088cc, #0077b3);
|
||||
background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#0088cc), to(#0077b3));
|
||||
background-image: -webkit-linear-gradient(top, #0088cc, #0077b3);
|
||||
background-image: -o-linear-gradient(top, #0088cc, #0077b3);
|
||||
background-image: linear-gradient(to bottom, #0088cc, #0077b3);
|
||||
background-repeat: repeat-x;
|
||||
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff0088cc', endColorstr='#ff0077b3', GradientType=0)
|
||||
}
|
||||
|
||||
.tt-suggestion.tt-is-under-cursor a {
|
||||
color: #fff;
|
||||
}
|
||||
|
||||
.tt-suggestion p {
|
||||
margin: 0;
|
||||
}
|
||||
15
public/stylesheets/typeaheadjs.css
Normal file
15
public/stylesheets/typeaheadjs.css
Normal file
@@ -0,0 +1,15 @@
|
||||
span.twitter-typeahead {
|
||||
width: 100%;
|
||||
}
|
||||
.input-group span.twitter-typeahead {
|
||||
display: block !important;
|
||||
}
|
||||
.input-group span.twitter-typeahead .tt-dropdown-menu {
|
||||
top: 32px !important;
|
||||
}
|
||||
.input-group.input-group-lg span.twitter-typeahead .tt-dropdown-menu {
|
||||
top: 44px !important;
|
||||
}
|
||||
.input-group.input-group-sm span.twitter-typeahead .tt-dropdown-menu {
|
||||
top: 28px !important;
|
||||
}
|
||||
Reference in New Issue
Block a user