Merge pull request #33 from mdmintz/styling

CSS Styling for the Test Report
This commit is contained in:
Michael Mintz 2016-05-12 03:25:32 -04:00
commit e6a1732104
3 changed files with 6 additions and 7 deletions

View File

@ -135,7 +135,6 @@ def build_report(report_log_path, page_results_list,
tf_color = "#EE3A3A"
new_data = '''<div><table><thead><tr><th>TEST REPORT SUMMARY
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
</th><th></th></tr></thead><tbody>
<tr style="color:#00BB00"><td>TESTS PASSING: <td>%s</tr>
<tr style="color:%s"> <td>TESTS FAILING: <td>%s</tr>

View File

@ -13,7 +13,7 @@ style = '''<meta id="OGTitle" property="og:title" content="SeleniumBase">
body {
background-image: none;
background-origin: padding-box;
background-color: #ecf2ff;
background-color: #c6d6f0;
padding: 30;
margin: 10;
font-family: "Proxima Nova","proxima-nova",
@ -24,6 +24,7 @@ style = '''<meta id="OGTitle" property="og:title" content="SeleniumBase">
1px 2px 12px 0px rgba(0, 0, 0, 0.18) !important;
}
table {
width: 100%;
border-collapse: collapse;
border-spacing: 0;
box-shadow: 0px 2px 5px 1px rgba(0, 0, 0, 0.25),
@ -46,10 +47,9 @@ style = '''<meta id="OGTitle" property="og:title" content="SeleniumBase">
thead {
text-align: center;
border: 1px solid #e1e1e1;
background-color: #fefefe;
width: 150%;
color: #0C8CDB;
background-color: #cbf2ff;
color: #0C8CDF;
background-color: #c0f0ff;
}
tbody tr:nth-child(even) {
background-color: #f1f1f1;
@ -84,7 +84,7 @@ style = '''<meta id="OGTitle" property="og:title" content="SeleniumBase">
padding: 15px 15px 15px 0;
}
h2 table {
color: #0C8CDB;
color: #0C8CDF;
font-size: 16px;
text-align: left;
font-weight: bold;

View File

@ -6,7 +6,7 @@ from setuptools import setup, find_packages # noqa
setup(
name='seleniumbase',
version='1.1.42',
version='1.1.43',
url='http://seleniumbase.com',
author='Michael Mintz',
author_email='@mintzworld',