Skip to content

Commit 235e5cb

Browse files
committed
[initial-screen] added prefix to .container class.
1 parent 60664e1 commit 235e5cb

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

frontend/express/public/stylesheets/main.css

+6-6
Original file line numberDiff line numberDiff line change
@@ -2561,7 +2561,7 @@ h4 + .mgmt-plugins-row {
25612561
margin-left: 20px;
25622562
}
25632563
/* Customize the label (the container) */
2564-
.container {
2564+
.populate-checkbox-container {
25652565
display: block;
25662566
position: relative;
25672567
padding-left: 35px;
@@ -2575,7 +2575,7 @@ h4 + .mgmt-plugins-row {
25752575
}
25762576

25772577
/* Hide the browser's default checkbox */
2578-
.container input {
2578+
.populate-checkbox-container input {
25792579
position: absolute;
25802580
opacity: 0;
25812581
cursor: pointer;
@@ -2595,11 +2595,11 @@ h4 + .mgmt-plugins-row {
25952595
}
25962596

25972597
/* On mouse-over, add a grey background color */
2598-
.container:hover input ~ .checkmark {
2598+
.populate-checkbox-container:hover input ~ .checkmark {
25992599
}
26002600

26012601
/* When the checkbox is checked, add a blue background */
2602-
.container input:checked ~ .checkmark {
2602+
.populate-checkbox-container input:checked ~ .checkmark {
26032603
background-color: #2FA732;
26042604
border: 1px solid #2FA732;
26052605
}
@@ -2612,12 +2612,12 @@ h4 + .mgmt-plugins-row {
26122612
}
26132613

26142614
/* Show the checkmark when checked */
2615-
.container input:checked ~ .checkmark:after {
2615+
.populate-checkbox-container input:checked ~ .checkmark:after {
26162616
display: block;
26172617
}
26182618

26192619
/* Style the checkmark/indicator */
2620-
.container .checkmark:after {
2620+
.populate-checkbox-container .checkmark:after {
26212621
left: 3px;
26222622
top: 1px;
26232623
width: 4px;

plugins/populator/frontend/public/javascripts/countly.views.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -149,7 +149,7 @@ app.addPageScript("/manage/apps", function() {
149149
'</tr>';
150150

151151
var populateFirstApp = '<div class="add-app-input-wrapper">' +
152-
'<span id="populate-after-app-description" data-localize="populator.tooltip"></span><label class="container">' +
152+
'<span id="populate-after-app-description" data-localize="populator.tooltip"></span><label class="populate-checkbox-container">' +
153153
'<input id="populate-first-app-after" type="checkbox" checked="checked">' +
154154
'<span class="checkmark"></span>' +
155155
'</label>' +

0 commit comments

Comments
 (0)