Skip to content
This repository has been archived by the owner on Dec 27, 2019. It is now read-only.

Commit

Permalink
1.0.23
Browse files Browse the repository at this point in the history
  • Loading branch information
sveneberth committed Jul 31, 2016
2 parents 5c61eee + d92a3a9 commit 11ac1d4
Show file tree
Hide file tree
Showing 35 changed files with 2,573 additions and 2,433 deletions.
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1 +1 @@
node_modules
node_modules
24 changes: 22 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,26 +1,46 @@
# Change Log
All notable changes to this project will be documented in this file.


## [Unreleased]
nothing since last release


## [1.0.23] - 2016-07-31
### Added
- center-functions [.center(), .centerX().centerY()]

- key element: a container to present key visuals, claims or slogans
- bar element: for vertical alignment and horizontal distribution, such as navigation bars or inline forms
- pagination
- tab variation: tab-vFullscreen

### Changed
- monoFont to 'Source Code Pro'
- .tab label is now called .tab-label to increase the sturdiness
- .media-image.small is now called .media-image.media-image-vSmall to increase consistency
- breadcrumb items are now namespaced

### Fixed
- placeholder.svg is now linked correctly in image.less
- Tabs works again


## [1.0.22] - 2016-07-28
### Removed
- removed doc styles


## [1.0.21] - 2016-07-24
### Added
- several slider styles


## [1.0.20] - 2016-07-23
- Changelog started here


[Unreleased]: https://github.com/viur-ignite/viur-ignite-css/compare/1.0.22...master
[Unreleased]: https://github.com/viur-ignite/viur-ignite-css/compare/1.0.23...master
[1.0.23]: https://github.com/viur-ignite/viur-ignite-css/compare/1.0.22...1.0.23
[1.0.22]: https://github.com/viur-ignite/viur-ignite-css/compare/1.0.21...1.0.22
[1.0.21]: https://github.com/viur-ignite/viur-ignite-css/compare/1.0.20...1.0.21
[1.0.20]: https://github.com/viur-ignite/viur-ignite-css/compare/02a8706fb892b091bfa913d3194736a5d5a1ef4a...1.0.20
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ gulp.task('default', function() {
});
```

Run first the init task with
First run the init task with
```
$ gulp init
```
Expand Down
2 changes: 1 addition & 1 deletion index.js
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ module.exports = {
.pipe(gulp.dest(options.dest)) // save cleaned version
.pipe(nano()) // minify css
.pipe(rename('style.min.css'))
.pipe(gulp.dest(options.dest)); // save minified version
.pipe(gulp.dest(options.dest)); // save minified version
},

init: function (options) {
Expand Down
9 changes: 5 additions & 4 deletions less/appconf.less
Original file line number Diff line number Diff line change
@@ -1,9 +1,10 @@
@charset "UTF-8";
// ---------------------------------------------------------------------------------------
// APPCONFIGURATION
// ---------------------------------------------------------------------------------------
/**
* APPCONFIGURATION
*
* Here you can configure the styling with global variables.
*/

// Here you can configure the styling with global variables.

// Color and Shadow Sets
@mainColor: #d00f1c; // The corporate color - defining most of the looks.
Expand Down
109 changes: 52 additions & 57 deletions less/badge.less
Original file line number Diff line number Diff line change
@@ -1,8 +1,7 @@
@charset "UTF-8";
/* ------------------------------------------------------------------------------------------------------
#BADGES and MARKERS
------------------------------------------------------------------------------------------------------ */

/**
* BADGES and MARKERS
*/

// Notification Badges are numerical indicators of how many items are associated with some kind of content.

Expand All @@ -12,33 +11,33 @@

.badge,
.has-badge:after {
content: attr(data-badge);
display: inline-block;
pointer-events: none;
font-size: .7em;
font-weight: 700;
line-height: 1.5;
text-decoration: none;
text-shadow: none;
text-align: center;
vertical-align: middle;
letter-spacing: normal;
padding: 0 .45em;
margin: -3px -2px 0 10px;
color: contrast(lighten(@badgeColor,10%));
background: lighten(@badgeColor,10%);
border-radius: .1em;
box-shadow: inset 0 1px rgba(255, 255, 255, 0.2), 0 1px rgba(0, 0, 0, 0.2);
content: attr(data-badge);
display: inline-block;
pointer-events: none;
font-size: .7em;
font-weight: 700;
line-height: 1.5;
text-decoration: none;
text-shadow: none;
text-align: center;
vertical-align: middle;
letter-spacing: normal;
padding: 0 .45em;
margin: -3px -2px 0 10px;
color: contrast(lighten(@badgeColor,10%));
background: lighten(@badgeColor,10%);
border-radius: .1em;
box-shadow: inset 0 1px rgba(255, 255, 255, 0.2), 0 1px rgba(0, 0, 0, 0.2);
}

.badge-vInverse,
.has-badge-vInverse:after {
background:transparent;
color:inherit;
border:1px solid;
border-color:currentColor;
box-shadow: none;
padding: 0 .45em;
background:transparent;
color:inherit;
border:1px solid;
border-color:currentColor;
box-shadow: none;
padding: 0 .45em;
}

// Markers are used to provide additional information about something.
Expand All @@ -47,55 +46,51 @@

.marker,
.has-marker:after {
content: attr(aria-label);
display: inline-block;
pointer-events: none;
font-size: .7em;
font-weight: 700;
line-height: 1.6;
text-transform: UPPERCASE;
text-decoration: none;
text-shadow: none;
text-align: center;
white-space: nowrap;
vertical-align: middle;
letter-spacing: normal;
padding: .1em .6em;
margin: -2px -2px 0 .8em;
color: contrast(lighten(@markerColor,10%));
background: lighten(@markerColor,10%);
border-radius: .1em;
box-shadow: inset 0 1px rgba(255, 255, 255, 0.2), 0 1px rgba(0, 0, 0, 0.2);
content: attr(aria-label);
display: inline-block;
pointer-events: none;
font-size: .7em;
font-weight: 700;
line-height: 1.6;
text-transform: UPPERCASE;
text-decoration: none;
text-shadow: none;
text-align: center;
white-space: nowrap;
vertical-align: middle;
letter-spacing: normal;
padding: .1em .6em;
margin: -2px -2px 0 .8em;
color: contrast(lighten(@markerColor,10%));
background: lighten(@markerColor,10%);
border-radius: .1em;
box-shadow: inset 0 1px rgba(255, 255, 255, 0.2), 0 1px rgba(0, 0, 0, 0.2);
}

.marker-vInverse,
.has-marker-vInverse:after {
background:transparent;
color:inherit;
border:1px solid;
border-color:currentColor;
box-shadow: none;
padding: 0 .45em;
background:transparent;
color:inherit;
border:1px solid;
border-color:currentColor;
box-shadow: none;
padding: 0 .45em;
}


// => Badge Media Queries

.media-mixin(@break) when (@break = @breakSmall) {

}

.media-mixin(@break) when (@break = @breakMedium) {

}

.media-mixin(@break) when (@break = @breakLarge) {

}

.media-mixin(@break) when (@break = @break2x) {

}

.media-mixin(@break) when (@break = @breakPrint) {

}
90 changes: 90 additions & 0 deletions less/bar.less
Original file line number Diff line number Diff line change
@@ -0,0 +1,90 @@
@charset "UTF-8";
/**
* HORIZONTAL BAR
*
* The .bar element is a horizontal stripe that can contain any other item.
* Use it for vertical alignment and horizontal distribution, such as navigation bars or inline forms.
*/


@barBackgroundColor: @backgroundColor;

.bar {
align-items: stretch;
display: flex;
min-height: 35px;
position: relative;
text-align: center;
justify-content: space-between;
}

.barGroup {
display: flex;
align-items: center;
.btn:not(:last-child),
.bar-item:not(:last-child),
.bar-link:not(:last-child) {margin-right: 10px;}
}

.barGroup-vLeft {justify-content: flex-start;}
.barGroup-vCenter {justify-content: center;}
.barGroup-vRight {justify-content: flex-end;}

.barGroup-vNav {
align-items: stretch;
& .bar-item {
padding: 10px;
display:flex;
align-items: center;
border-bottom: 1px solid #ccc;
}
&.barGroup .bar-link {
justify-content: center;
padding: 10px;
margin-right:0;
border-bottom: 1px solid @mainColor;
}
& .bar-link:hover {
background-color: darken(@barBackgroundColor,2%);
border-bottom: 1px solid lighten(@mainColor,10%);
}
}

.bar-link {
align-items: center;
display: flex;
}


// => Bar Media Queries

.media-mixin(@break) when (@break = @breakSmall) {
}

.media-mixin(@break) when (@break = @breakMedium) {
.bar {display:block; text-align:left;}
.barGroup {
display: block;
&:not(:last-child) {
margin-bottom: 10px;
padding-bottom: 10px;
border-bottom: 1px solid #ccc;
}
.btn:not(:last-child),
.bar-item:not(:last-child),
.bar-link:not(:last-child) {margin-right: 0; margin-bottom: 10px;}
&.barGroup-vNav .bar-link {margin-bottom: 0;}
.btn,
.bar-item,
.bar-link {display: block; width: 100%;}
}
}

.media-mixin(@break) when (@break = @breakLarge) {
}

.media-mixin(@break) when (@break = @break2x) {
}

.media-mixin(@break) when (@break = @breakPrint) {
}
Loading

0 comments on commit 11ac1d4

Please sign in to comment.