Compare commits
3 Commits
test/justi
...
v0.2.3
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
d590e9972b | ||
|
|
91fb1533e6 | ||
|
|
04f17aad68 |
@@ -1,6 +1,12 @@
|
|||||||
# Changelog
|
# Changelog
|
||||||
All notable changes to this project will be documented in this file.
|
All notable changes to this project will be documented in this file.
|
||||||
|
|
||||||
|
## 0.2.3 - 2017-09-23
|
||||||
|
|
||||||
|
## Fixed
|
||||||
|
- Fix delete stack button being not available
|
||||||
|
- Fix acl issues with PostgreSQL
|
||||||
|
|
||||||
## 0.2.2 - 2017-09-07
|
## 0.2.2 - 2017-09-07
|
||||||
|
|
||||||
## Fixed
|
## Fixed
|
||||||
|
|||||||
@@ -16,7 +16,7 @@
|
|||||||
💥 This is still alpha software: it may not be stable enough for production!
|
💥 This is still alpha software: it may not be stable enough for production!
|
||||||
|
|
||||||
</description>
|
</description>
|
||||||
<version>0.2.2</version>
|
<version>0.2.3</version>
|
||||||
<licence>agpl</licence>
|
<licence>agpl</licence>
|
||||||
<author>Julius Härtl</author>
|
<author>Julius Härtl</author>
|
||||||
<namespace>Deck</namespace>
|
<namespace>Deck</namespace>
|
||||||
|
|||||||
@@ -139,6 +139,12 @@ input.input-inline {
|
|||||||
width: 100%;
|
width: 100%;
|
||||||
bottom: 0px;
|
bottom: 0px;
|
||||||
top: 44px;
|
top: 44px;
|
||||||
|
|
||||||
|
&.as-sortable-un-selectable {
|
||||||
|
.card-list {
|
||||||
|
min-height: 96px;
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
#innerBoard {
|
#innerBoard {
|
||||||
@@ -309,21 +315,35 @@ input.input-inline {
|
|||||||
width: 100%;
|
width: 100%;
|
||||||
}
|
}
|
||||||
|
|
||||||
.card-list {
|
ul {
|
||||||
padding-bottom: 100px;
|
overflow: hidden;
|
||||||
padding-top: 40px;
|
|
||||||
margin-top:-40px;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.as-sortable-placeholder {
|
||||||
|
margin: 10px 10px 20px 10px;
|
||||||
|
border: 1px dashed $color-darkgrey;
|
||||||
|
|
||||||
|
&:last-child {
|
||||||
|
margin: 10px;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
.card {
|
.card {
|
||||||
background-color: $color-main-background;
|
background-color: $color-main-background;
|
||||||
margin: 10px 10px 20px 10px;
|
margin: 10px 10px 20px 10px;
|
||||||
white-space: normal;
|
white-space: normal;
|
||||||
position: relative;
|
position: relative;
|
||||||
opacity: 1.0;
|
opacity: 1.0;
|
||||||
|
overflow: auto;
|
||||||
-webkit-box-shadow: 0 0 5px $color-darkgrey;
|
-webkit-box-shadow: 0 0 5px $color-darkgrey;
|
||||||
|
|
||||||
|
&:last-child {
|
||||||
|
margin: 10px;
|
||||||
|
}
|
||||||
|
|
||||||
&.archived .card-upper {
|
&.archived .card-upper {
|
||||||
opacity: 0.5;
|
opacity: 0.5;
|
||||||
}
|
}
|
||||||
@@ -408,7 +428,6 @@ input.input-inline {
|
|||||||
text-align: center;
|
text-align: center;
|
||||||
padding: 10px;
|
padding: 10px;
|
||||||
margin: 10px;
|
margin: 10px;
|
||||||
margin-top: -90px;
|
|
||||||
border: none;
|
border: none;
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
-webkit-box-shadow: none;
|
-webkit-box-shadow: none;
|
||||||
@@ -462,11 +481,6 @@ input.input-inline {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
.as-sortable-placeholder {
|
|
||||||
margin: 10px 10px 20px 10px;
|
|
||||||
border: 1px dashed $color-darkgrey;
|
|
||||||
}
|
|
||||||
|
|
||||||
.info {
|
.info {
|
||||||
padding-left: 5px;
|
padding-left: 5px;
|
||||||
padding-right: 5px;
|
padding-right: 5px;
|
||||||
@@ -1093,6 +1107,9 @@ input.input-inline {
|
|||||||
h2 button {
|
h2 button {
|
||||||
display: none;
|
display: none;
|
||||||
}
|
}
|
||||||
|
h2:hover button {
|
||||||
|
display: inline-flex;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -82,6 +82,9 @@ class Acl extends RelationalEntity implements \JsonSerializable {
|
|||||||
}
|
}
|
||||||
|
|
||||||
public function setType($type) {
|
public function setType($type) {
|
||||||
|
if(is_numeric($type)) {
|
||||||
|
return parent::setType($type);
|
||||||
|
}
|
||||||
// FIXME: Remove when all javascript uses numeric types
|
// FIXME: Remove when all javascript uses numeric types
|
||||||
if ($type === 'group' || $type === '1') {
|
if ($type === 'group' || $type === '1') {
|
||||||
$typeInt = Acl::PERMISSION_TYPE_GROUP;
|
$typeInt = Acl::PERMISSION_TYPE_GROUP;
|
||||||
|
|||||||
Reference in New Issue
Block a user