Files
pathfinder/sass/layout/_timeline.scss
Mark Friedrich e01f299d2b v1.1.1 (#233)
* fixed #194 PHP 5.6 error

* - closed #102 added "set waypoint/destination" context menu to route finder module
- update "Select2" 4.0.0 -> 4.0.3
- update "Font Awesome" 4.6.1 -> 4.6.3

* - added *.js files for develop branch

* - closed #195 fixed "BASE" dir for subDir installations
- fixed "Home" menu link

* -  #195 improved js load path

* - added "clear cache" function for manually cache clearing to /setup #200 #105 #158
- added cache size information to /setup
- added current pathfinder  "VERSION" to /setup
- updated "requireJs" 2.1.20 ->2.2.0
- removed unnecessary page cache timings from static templates (page cache)

* - added "document_root", "port", "protocol" and "PHP framework version" to /setup page
- added new "shattered" wormhole types to "signature table", closed #182, #179

* - added new "delete old signatures" option to "signature reader" dialog, closed #95

* - added new housekeeping cronjob für cached files, closed #200
- added new cache size information to /setup page

* - fixed signature groupId/typeId "overwriting" for already known signatures. closed #207
- improved system search dialog. Added trim(); before "api/signatures-> search" request

* updated README.me

* fixed PHP error "default object from empty value", closed #209

* reduced image file size

* - added local storage (IndexedDB)
- added local storage for map scroll position. closed #69

* - added "notice" panel for upcoming release information
- improved layout for "release dialog" (GitHub API)
- improved pagespeed (removed render blocking javascripts)
- improved map scrollbar configuration
- improved Chrome browser custom scrollbar layout
- removed "sign up" buttons from "map panels", closed #214

* - fixed some session and cookie  bugs

* - added new requirement check for `max_input_vars` to /setup URL, closed #224

* - fixed isWormhole(); bug

* -v1.1.1 added js build files
2016-07-05 20:44:12 +02:00

172 lines
3.0 KiB
SCSS

.timeline {
list-style: none;
position: relative;
}
.timeline:before {
top: 0;
bottom: 0;
position: absolute;
content: " ";
width: 1px;
// background-color: $gray-light;
left: 50%;
margin-top: 20px;
@include background-image(linear-gradient(to bottom, $green-dark, $gray-light 25%));
}
.timeline > li {
margin-bottom: 20px;
position: relative;
&.timeline-first{
.timeline-title{
color: $green-dark;
}
.timeline-badge{
background-color: $green-dark;
}
}
}
.timeline > li:before,
.timeline > li:after {
content: " ";
display: table;
}
.timeline > li:after {
clear: both;
}
.timeline > li:before,
.timeline > li:after {
content: " ";
display: table;
}
.timeline > li:after {
clear: both;
}
.timeline > li > .timeline-panel {
width: 47%;
float: left;
border: 1px solid $gray-dark;
padding: 8px;
position: relative;
background-color: $gray-dark;
font-size: 11px;
@include box-shadow(0 4px 10px rgba(0,0,0, 0.4));
@include border-radius(5px);
}
.timeline > li > .timeline-panel:before {
content: " ";
position: absolute;
top: 10px;
right: -8px;
display: inline-block;
border-top: 7px solid transparent;
border-left: 7px solid $gray-light;
border-right: 0 solid $gray-light;
border-bottom: 7px solid transparent;
}
.timeline > li > .timeline-panel:after {
content: " ";
position: absolute;
top: 10px;
right: -8px;
display: inline-block;
border-top: 7px solid transparent;
border-left: 7px solid $gray-light;
border-right: 0 solid $gray-light;
border-bottom: 7px solid transparent;
}
.timeline > li > .timeline-badge {
color: $gray-darker;
width: 22px;
height: 22px;
line-height: 22px;
text-align: center;
position: absolute;
top: 7px;
left: 50%;
margin-left: -11px;
background-color: $gray-light;
z-index: 100;
@include border-radius(50%);
}
.timeline > li.timeline-inverted > .timeline-panel {
float: right;
}
.timeline > li.timeline-inverted > .timeline-panel:before {
border-left-width: 0;
border-right-width: 7px;
left: -8px;
right: auto;
}
.timeline > li.timeline-inverted > .timeline-panel:after {
border-left-width: 0;
border-right-width: 8px;
left: -9px;
right: auto;
}
.timeline-title {
margin-top: 0;
color: inherit;
}
.timeline-body > p,
.timeline-body > ul {
margin-bottom: 0;
list-style-type: disc;
margin-left: 15px;
}
.timeline-body > p + p {
margin-top: 5px;
}
@media (max-width: 1200px) {
ul.timeline:before {
left: 40px;
}
ul.timeline > li > .timeline-panel {
width: calc(100% - 62px);
}
ul.timeline > li > .timeline-badge {
left: 29px;
margin-left: 0;
top: 6px;
}
ul.timeline > li > .timeline-panel {
float: right;
}
ul.timeline > li > .timeline-panel:before {
border-left-width: 0;
border-right-width: 7px;
left: -8px;
right: auto;
}
ul.timeline > li > .timeline-panel:after {
border-left-width: 0;
border-right-width: 7px;
left: -8px;
right: auto;
}
}