We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 76dfe01 commit 3dc7686Copy full SHA for 3dc7686
app/assets/style.css
@@ -65,19 +65,20 @@ svg#edges {
65
}
66
67
.item-container > .button {
68
- border: 1px solid lightgrey;
+ border: none;
69
cursor: pointer;
70
position: absolute;
71
bottom: 2px;
72
right: 2px;
73
- background-color: #fff;
74
- border-radius: 2px;
75
- padding: 2px;
+ background: transparent;
+ border-radius: 4px;
+ padding: 4px;
76
opacity: 0.4;
77
78
79
.item-container > .button:hover {
80
opacity: 1;
81
+ background-color: #fff;
82
83
84
.emptyItem {
src/canvas/components/ItemContainer.jsx
@@ -59,8 +59,9 @@ let ItemContainer = React.createClass({
59
<button
60
className="button"
61
onClick={toggleExpand}
62
+ title="Expand"
63
>
- ⛶
64
+ ↘
</button>
)}
</div>
0 commit comments