Skip to content

Commit

Permalink
some style changes and also minimun fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
leliel12 committed Nov 10, 2017
1 parent da2b323 commit a53616d
Show file tree
Hide file tree
Showing 4 changed files with 23 additions and 65 deletions.
32 changes: 21 additions & 11 deletions doc/source/_static/css/skcriteria.css
Original file line number Diff line number Diff line change
Expand Up @@ -28,22 +28,32 @@ a, a:visited {
color: white;
}

div.nboutput,
div[class^='highlight'] pre {
font-size: 14px !important;
div.nbinput {
background-color: #dddddd !important;
border-bottom: 1px solid #CCC;
}

div.nboutput div.table-wrapper {
max-height: 500px;
overflow: auto;

div.input_area {
background-color: transparent !important;
border: none !important;
}


table {
border-collapse: collapse;
}

table thead tr th{
background-color: #7b8e2d;
}

div.nboutput div.table-wrapper th {
color: #6b7b27;
table thead tr th,
table tbody tr td {
border: 1px solid black;
font-size: 12px;
}

div.nboutput div.table-wrapper table {
border-collapse: separate;
border-spacing: 7px 0;
tr:nth-child(even) {
background-color: #7b8e2d5c;
}
52 changes: 0 additions & 52 deletions doc/source/api/skcriteria.plot.rst
Original file line number Diff line number Diff line change
Expand Up @@ -4,58 +4,6 @@ skcriteria\.plot package
Submodules
----------

skcriteria\.plot\.bars module
-----------------------------

.. automodule:: skcriteria.plot.bars
:members:
:undoc-members:
:show-inheritance:

skcriteria\.plot\.box module
----------------------------

.. automodule:: skcriteria.plot.box
:members:
:undoc-members:
:show-inheritance:

skcriteria\.plot\.multihist module
----------------------------------

.. automodule:: skcriteria.plot.multihist
:members:
:undoc-members:
:show-inheritance:

skcriteria\.plot\.radar module
------------------------------

.. automodule:: skcriteria.plot.radar
:members:
:undoc-members:
:show-inheritance:

skcriteria\.plot\.scmtx module
------------------------------

.. automodule:: skcriteria.plot.scmtx
:members:
:undoc-members:
:show-inheritance:

skcriteria\.plot\.violin module
-------------------------------

.. automodule:: skcriteria.plot.violin
:members:
:undoc-members:
:show-inheritance:


Module contents
---------------

.. automodule:: skcriteria.plot
:members:
:undoc-members:
Expand Down
2 changes: 1 addition & 1 deletion doc/source/api/skcriteria.rst
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ Reference

core
madm/madm
.. ~ skcriteria.plot
skcriteria.plot
.. ~ skcriteria.weights
.. ~ skcriteria\.core module
Expand Down
2 changes: 1 addition & 1 deletion skcriteria/core.py
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,7 @@ def is_mtx(mtx, size=None):
a, b = mtx.shape
if size and (a, b) != size:
return False
except:
except Exception:
return False
return True

Expand Down

0 comments on commit a53616d

Please sign in to comment.