Skip to content

Commit 054fe6d

Browse files
committed
General Code Cleanup
Fixing a VERY old mistake.
1 parent 9ba9fde commit 054fe6d

13 files changed

+13
-58
lines changed

README.md

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,10 +6,7 @@ A character creation guide (with minimal rules-checking) for Vampire: the Masque
66
Compatibility
77
==============
88
Browser compatibility tracker: Issue #19
9-
<<<<<<< HEAD
10-
=======
119

12-
>>>>>>> origin/PHP-ify
1310
Tested and developed in Chrome 32.0.1700.107 m using no addons. (2/11/2014)
1411
Tested and passed in Firefox 27 using no addons. (2/14/2014)
1512

basic.css

Lines changed: 1 addition & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,6 @@ input[type=text] {
2424
right: 5px;
2525
}
2626

27-
<<<<<<< HEAD
2827
/* Dots */
2928
.dots {
3029
width: 20px;
@@ -62,18 +61,7 @@ input[type=text] {
6261
width: 12px;
6362
height: 12px;
6463
background: #000;
65-
6664
-webkit-border-radius: 15px;
67-
=======
68-
.holder {
69-
width: 850px;
70-
margin-left: auto;
71-
margin-right: auto;
72-
}
73-
74-
.characterBox {
75-
border: 1px black solid;
76-
>>>>>>> origin/PHP-ify
7765
border-radius: 15px;
7866
width: 148px;
7967
height: 148px;
@@ -106,7 +94,6 @@ input[type=text] {
10694
margin: 0px;
10795
}
10896

109-
<<<<<<< HEAD
11097
/* bloodPool */
11198
.bloodPool {
11299
width: 20px;
@@ -157,7 +144,7 @@ input[type=text] {
157144
}
158145

159146
.bloodPool input[type=checkbox]:checked + label {
160-
visibility: hidden;
147+
visibility: hidden;
161148
}
162149

163150
.bloodPool input[type=checkbox]:checked + label:after {
@@ -174,10 +161,6 @@ visibility: hidden;
174161
/* Character Sheet sections */
175162
#text1 {
176163
text-align: left;
177-
=======
178-
.spacer {
179-
height: 30px;
180-
>>>>>>> origin/PHP-ify
181164
}
182165

183166
#newCharacter {
@@ -244,11 +227,6 @@ visibility: hidden;
244227
background-image: url('images/tremere-light.png');
245228
}
246229

247-
<<<<<<< HEAD
248-
.checks {
249-
position: absolute;
250-
left: 30;
251-
=======
252230
.Tremere:hover {
253231
background: rgba(0, 0, 0, 0.75);
254232
background-image: url('images/tremere.png');
@@ -257,7 +235,6 @@ visibility: hidden;
257235

258236
.Ventrue {
259237
background-image: url('images/ventrue-light.png');
260-
>>>>>>> origin/PHP-ify
261238
}
262239

263240
.Ventrue:hover {

classes/attribute.class.php

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -82,5 +82,4 @@ private function buildPrint() {
8282
public function showPrint() {
8383
return $this->printCode;
8484
}
85-
}
86-
?>
85+
}

classes/attributeGroup.class.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,4 +47,3 @@ public function showPrint() {
4747
return $this->printCode;
4848
}
4949
}
50-
?>

classes/blood.class.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,4 +43,3 @@ public function showPrint() {
4343
return $this->printCode;
4444
}
4545
}
46-
?>

classes/bloodPool.class.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,4 +60,3 @@ public function showPrint() {
6060
return $this->printCode;
6161
}
6262
}
63-
?>

classes/dot.class.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,4 +46,3 @@ public function showPrint() {
4646
return $this->printCode;
4747
}
4848
}
49-
?>

classes/navbar.class.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -95,4 +95,3 @@ public function showBackgrounds() {
9595
return $this->backgroundCode;
9696
}
9797
}
98-
?>

classes/parser.class.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,4 +48,3 @@ public function stringToArray($string) {
4848
return $output;
4949
}
5050
}
51-
?>

classes/printable.class.php

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ private function buildCode() {
2727

2828
'<div id="plainText" class="section">' . "\n";
2929

30-
$this->code .= '<div id="text1" class="lefty">' . "\n" .
30+
$this->code .= '<div id="text1" class="lefty">' . "\n" .
3131
'Character\'s Name:' . "\n" .
3232
'<span class="plain">' . $this->data['fluff']['character'] . '</span>' . "\n" .
3333
'<br />' . "\n" .
@@ -139,14 +139,12 @@ private function buildCode() {
139139
break;
140140
}
141141
}
142-
$this->code .= '</div>' . "\n";
142+
$this->code .= '</div>' . "\n";
143+
}
143144
}
144145
}
145-
}
146146

147147
public function showCode() {
148148
return $this->code;
149149
}
150150
}
151-
152-
?>

main.js

Lines changed: 0 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -12,23 +12,11 @@ function disableDotsInGroup(groupName) /* str, dex, etc */ {
1212
};
1313

1414
} else if (groupName == 'bloodPool') {
15-
<<<<<<< HEAD
16-
1715
var blood = document.getElementsByClassName('blood');
1816

1917
for (var i=0;i<blood.length;i++) {
2018
blood[i].disabled = true;
2119
}
22-
23-
=======
24-
25-
var blood = document.getElementsByClassName('blood');
26-
27-
for (var i=0;i<blood.length;i++) {
28-
blood[i].disabled = true;
29-
}
30-
31-
>>>>>>> origin/PHP-ify
3220
} else {
3321

3422
var dots = [];

printme.php

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -221,5 +221,4 @@
221221
'checked' => 1
222222
],
223223
'blood' => 10
224-
];
225-
?>
224+
];

sheet.css

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -281,6 +281,8 @@ input[type=checkbox] {
281281
/* Internet Explorer */
282282
filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=3);
283283

284+
/* Everything else */
285+
transform: rotate(-90deg);
284286
}
285287

286288
#phasesBody {
@@ -346,7 +348,8 @@ li {
346348

347349
/* Print styles */
348350
.plain {
349-
font-weight: normal;
350-
text-align: right;
351-
position: absolute;
352-
right: 10;
351+
font-weight: normal;
352+
text-align: right;
353+
position: absolute;
354+
right: 10;
355+
}

0 commit comments

Comments
 (0)