Skip to content

Commit e44f62e

Browse files
committed
[General] adds an post-install-cmd to the composer.json.
This should allow to install YAWIK via composer create-project cross-solution/yawik
1 parent dc64d84 commit e44f62e

File tree

3 files changed

+11
-10
lines changed

3 files changed

+11
-10
lines changed

composer.json

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,5 +52,10 @@
5252
"phpunit/phpunit": "4.7.*",
5353
"satooshi/php-coveralls": "dev-master",
5454
"mikey179/vfsStream": "1.5.*"
55-
}
55+
},
56+
"scripts": {
57+
"post-install-cmd": [
58+
"./install.sh"
59+
]
60+
}
5661
}

less/general.less

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -106,6 +106,3 @@
106106
#form-jobs-list-filter .select2-container.form-control {
107107
display: inline-block;
108108
}
109-
#form-jobs-list-filter .twitter-typeahead {
110-
top: -4px;
111-
}

less/include/typeahead.less

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,3 @@
1-
.twitter-typeahead {
2-
// might be needed for the geo plugin. (location autocompletition)
3-
// width: 100%;
4-
}
5-
61
#search-applications-form .tt-input,
72
#search-applications-form .btn-group {
83
vertical-align: middle !important;
@@ -33,6 +28,10 @@
3328
}
3429

3530
.tt-cursor {
36-
color: #fff;
31+
color: @navbar-inverse-link-color;
3732
background-color: @brand-primary;
3833
}
34+
35+
#form-jobs-list-filter .twitter-typeahead {
36+
top: -5px;
37+
}

0 commit comments

Comments
 (0)