Skip to content
This repository has been archived by the owner on Jun 11, 2024. It is now read-only.

Commit

Permalink
[Prerelease] Bumped version number
Browse files Browse the repository at this point in the history
  • Loading branch information
Wikiki committed Feb 9, 2018
1 parent 848b6fa commit 04b4c12
Show file tree
Hide file tree
Showing 5 changed files with 109 additions and 2 deletions.
16 changes: 16 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,19 @@
<a name="0.1.6"></a>
## [0.1.6](https://github.com/Wikiki/bulma-quickview/compare/v0.1.0...v0.1.6) (2018-02-09)


### Bug Fixes

* **bower:** Add missing version ([f4ed78a](https://github.com/Wikiki/bulma-quickview/commit/f4ed78a))


### Features

* **gulp:** Add gulp dependencies ([1f1c9e0](https://github.com/Wikiki/bulma-quickview/commit/1f1c9e0))
* **gulp:** Add release task ([848b6fa](https://github.com/Wikiki/bulma-quickview/commit/848b6fa))



# Change Log

## [Unreleased](https://github.com/wikiki/bulma-quickview/tree/HEAD)
Expand Down
2 changes: 1 addition & 1 deletion bower.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "bulma-quickview",
"description": "Display a quick view of data without leaving the current page",
"main": "quickview.sass",
"version": "0.1.5",
"version": "0.1.6",
"authors": [
"Wikiki <wikiki@protonmail.com> (https://wikiki.github.io/bulma-extensions/overview)"
],
Expand Down
1 change: 1 addition & 0 deletions dist/bulma-quickview.min.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

90 changes: 90 additions & 0 deletions dist/bulma-quickview.sass
Original file line number Diff line number Diff line change
@@ -0,0 +1,90 @@
$quickview-z: 35 !default
$quickview-header-height: 3.25em !default
$quickview-footer-height: 4rem !default
$quickview-shadow: 5px 0px 13px 3px rgba( 0, 0, 0, 0.1 ) !default
$quickview-divider: 1px solid $grey-lighter !default

.quickview
display: flex
flex-direction: column
background-color: $white
max-width: calc( 100% - 50px )
&.is-marginless
max-width: 100%
position: fixed
top: 0
bottom: 0
z-index: $quickview-z
transform: translateZ( 0 )
transition: .3s ease
backface-visibility: hidden
perspective: 1000
will-change: transform
+mobile
width: 100%
right: -100%
+tablet
width: 50%
right: -50%
+desktop
width: 35%
right: -35%
+widescreen
width: 30%
right: -30%
+fullhd
width: 25%
right: -25%
&.is-left
+mobile
left: -100%
+tablet
left: -50%
+desktop
left: -35%
+widescreen
left: -30%
+fullhd
left: -25%
&.is-active
right: 0
box-shadow: $quickview-shadow
&.is-left
left: 0

.quickview-header
display: flex
justify-content: space-between
align-items: center
padding: 0 1rem
min-height: $quickview-header-height !important
border-bottom: $quickview-divider
@each $name, $pair in $colors
$color: nth($pair, 1)
$color-invert: nth($pair, 2)
&.is-#{$name}
background-color: $color
.title
color: $color-invert
.title
font-size: $size-6
font-weight: $weight-light
margin-bottom: 0
img
max-height: 2em

.quickview-body
-webkit-box-flex: 1
flex: 1 1 0%
overflow-y: auto

.quickview-footer
display: flex
justify-content: space-between
align-items: center
padding: 0 1rem
min-height: $quickview-footer-height
background-color: $white-ter
border-top: $quickview-divider
> *
margin: 0 .4rem
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "bulma-quickview",
"version": "0.1.5",
"version": "0.1.6",
"description": "Display a quick view of data without leaving the current page",
"main": "quickview.sass",
"scripts": {
Expand Down

0 comments on commit 04b4c12

Please sign in to comment.