File tree 3 files changed +19
-6
lines changed
stylesheets/components/form
3 files changed +19
-6
lines changed Original file line number Diff line number Diff line change @@ -41,10 +41,13 @@ jobs:
41
41
run : |
42
42
if [[ "${{ github.ref_name }}" == "develop" ]]; then
43
43
echo "BUCKET_NAME=patterns-stg.boston.gov" >> "${GITHUB_ENV}"
44
+ echo "CLOUDFRONT_ID=${{ secrets.STG_CLOUDFRONT_DISTRIBUTION_ID }}" >> "${GITHUB_ENV}"
44
45
elif [[ "${{ github.ref_name }}" == "production" ]]; then
45
46
echo "BUCKET_NAME=patterns.boston.gov" >> "${GITHUB_ENV}"
47
+ echo "CLOUDFRONT_ID=${{ secrets.CLOUDFRONT_DISTRIBUTION_ID }}" >> "${GITHUB_ENV}"
46
48
else
47
49
echo "BUCKET_NAME=patterns-uat.boston.gov" >> "${GITHUB_ENV}"
50
+ echo "CLOUDFRONT_ID=${{ secrets.UAT_CLOUDFRONT_DISTRIBUTION_ID }}" >> "${GITHUB_ENV}"
48
51
fi
49
52
if [[ ${{ vars.S3_DRY_RUN }} == 1 ]];then
50
53
echo "S3_DEST_DIR='DRY_RUN/'" >> "${GITHUB_ENV}"
@@ -108,7 +111,7 @@ jobs:
108
111
id : Invalidate-Cache
109
112
uses : chetan/invalidate-cloudfront-action@v2
110
113
env :
111
- DISTRIBUTION : ${{ secrets.CLOUDFRONT_DISTRIBUTION_ID }}
114
+ DISTRIBUTION : ${{ env.CLOUDFRONT_ID }}
112
115
PATHS : " /*"
113
116
AWS_REGION : " us-east-1"
114
117
AWS_ACCESS_KEY_ID : ${{ secrets.AWS_ACCESS_KEY }}
Original file line number Diff line number Diff line change @@ -78,12 +78,22 @@ $select-arrow-box-thin-width = 42px
78
78
padding : 0 85px 0 $sizing-300
79
79
width : 100%
80
80
height : "calc(2 * %s + 2 * %s + %s * 1rem)" % ($sizing-300 $border-200 $line-height-300 )
81
+ color : $charles-blue
81
82
82
83
margin : 0
83
84
box-sizing : border-box
84
85
-moz- appearance : none
85
86
appearance : none
86
87
88
+ option
89
+ color : $charles-blue
90
+
91
+ & --default
92
+ color : $charles-blue
93
+
94
+ option
95
+ color : $charles-blue
96
+
87
97
// hides the arrow box on IE10
88
98
& :: -ms-expand
89
99
display : none
Original file line number Diff line number Diff line change 25
25
margin : 0 0 $sizing-300
26
26
27
27
& -f
28
- field-height = "calc(%srem + %s * 1)" % ($line-height-600 $border-200 )
28
+ field-height = "calc(%srem + %s * 1)" % ($line-height-600 $border-150 )
29
29
30
30
font-family : $serif
31
31
font-size : 1rem
37
37
border : $border-200 solid $charles-blue
38
38
border-radius : 0 // Safari/iOS rounds input field corners by default
39
39
40
- height : field-height
40
+ height : 57 px
41
41
line-height : field-height
42
42
43
43
padding-left : $sizing-300
52
52
border-color : $focus-indicator-color
53
53
54
54
& --sm
55
- field-height-sm = "calc(%srem + %s * 1)" % ($line-height-400 $border-200 )
55
+ field-height-sm = "calc(%srem + %s * 1)" % ($line-height-400 $border-150 )
56
56
57
57
padding-left : $sizing-200
58
58
padding-right : $sizing-200
59
59
60
60
height : field-height-sm
61
- line-height : field-height-sm
61
+ line-height : 35 px
62
62
63
63
& :: placeholder
64
64
font-style : italic
74
74
textarea &
75
75
& .txt-f--combo
76
76
// Need to leave space for a .sel-f--sq element, and its borders
77
- width : "calc(100% - %s - %s * 1)" % ($select-arrow-box-width $border-200 )
77
+ width : "calc(100% - %s - %s * 1)" % ($select-arrow-box-width $border-150 )
78
78
79
79
input [type = email ]& --auto ,
80
80
input [type = tel ]& --auto ,
You can’t perform that action at this time.
0 commit comments