Skip to content

Commit 9147168

Browse files
authored
Merge pull request #113 from webdev-dev/master
Style Change for FormField.
2 parents 212b7c0 + 2c79eef commit 9147168

3 files changed

Lines changed: 37 additions & 2 deletions

File tree

dist/_wfui-react.scss

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2202,7 +2202,7 @@ div.ReactTags__suggestions ul li.ReactTags__activeSuggestion {
22022202
display: none; }
22032203

22042204
.wfui-form-preview .wfui-form-photo input,
2205-
.wfui-form-preview .wfui-form-input input,
2205+
.wfui-type-input-field .wfui-form-preview .wfui-form-input input,
22062206
.wfui-form-preview .wfui-form-textarea textarea {
22072207
background: none;
22082208
border: none;

docker-compose.yml

Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
version: '3'
2+
services:
3+
webdevff0b3218aaad11e7abc4cec278b6b50a_PREVIEW_CONTAINER:
4+
build:
5+
context: .
6+
dockerfile: Dockerfile
7+
environment:
8+
- VIRTUAL_HOST=webdevff0b3218aaad11e7abc4cec278b6b50a_PREVIEW_HOST
9+
ports:
10+
- "webdevff0b3218aaad11e7abc4cec278b6b50a_PREVIEW_PORT:webdevff0b3218aaad11e7abc4cec278b6b50a_PREVIEW_PORT"
11+
volumes:
12+
- .:/usr/src/app
13+
command: bash -c 'cd /usr/src/app/_preview; sudo bundle update; ruby index.rb -o 0.0.0.0 -p webdevff0b3218aaad11e7abc4cec278b6b50a_PREVIEW_PORT'
14+
image: jekyll:docker
15+
container_name: webdevff0b3218aaad11e7abc4cec278b6b50a_PREVIEW_CONTAINER
16+
webdevff0b3218aaad11e7abc4cec278b6b50a_JEKYLL_CONTAINER:
17+
build:
18+
context: .
19+
dockerfile: Dockerfile
20+
environment:
21+
- VIRTUAL_HOST=webdevff0b3218aaad11e7abc4cec278b6b50a_JEKYLL_HOST
22+
- CERT_NAME=webdevff0b3218aaad11e7abc4cec278b6b50a_ENV_DOMAIN
23+
ports:
24+
- "4000:4000"
25+
volumes:
26+
- .:/usr/src/app
27+
command: bash -c 'cd /usr/src/app; sudo bundle update; jekyll serve -d _site --watch --host=0.0.0.0 --port webdevff0b3218aaad11e7abc4cec278b6b50a_JEKYLL_PORT'
28+
image: jekyll:docker
29+
container_name: webdevff0b3218aaad11e7abc4cec278b6b50a_JEKYLL_CONTAINER
30+
external_links:
31+
- webdevff0b3218aaad11e7abc4cec278b6b50a_API_CONTAINER:webdevff0b3218aaad11e7abc4cec278b6b50a_API_HOST
32+
networks:
33+
default:
34+
external:
35+
name: nginx-proxy

src/FormFields/index.scss

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1264,7 +1264,7 @@ div.ReactTags__suggestions ul li.ReactTags__activeSuggestion {
12641264
display: none;
12651265
}
12661266
.wfui-form-photo input,
1267-
.wfui-form-input input,
1267+
.wfui-type-input-field & .wfui-form-input input,
12681268
.wfui-form-textarea textarea {
12691269
background: none;
12701270
border: none;

0 commit comments

Comments
 (0)