The fullscreen button is now an image. It looks different depending on whether the pane is on top or bottom, and changes background when activated.
This commit is contained in:
parent
82106afc95
commit
29fcb08083
7 changed files with 29 additions and 2 deletions
|
@ -56,6 +56,8 @@ var ScholarPane = new function()
|
|||
newSplitter.setAttribute('resizeafter','closest');
|
||||
appContent.removeChild(oldSplitter);
|
||||
appContent.insertBefore(newSplitter, document.getElementById('content'));
|
||||
|
||||
document.getElementById('tb-fullscreen').setAttribute('scholartop','true');
|
||||
}
|
||||
|
||||
//Initialize collections view
|
||||
|
@ -100,7 +102,10 @@ var ScholarPane = new function()
|
|||
document.getElementById('scholar-splitter').setAttribute('collapsed',!visible);
|
||||
|
||||
if(!visible)
|
||||
{
|
||||
document.getElementById('content').setAttribute('collapsed', false);
|
||||
document.getElementById('tb-fullscreen').setAttribute('fullscreenmode', false);
|
||||
}
|
||||
}
|
||||
|
||||
function fullScreen()
|
||||
|
@ -108,6 +113,7 @@ var ScholarPane = new function()
|
|||
var visible = document.getElementById('content').getAttribute('collapsed') == 'true';
|
||||
document.getElementById('content').setAttribute('collapsed', !visible);
|
||||
document.getElementById('scholar-splitter').setAttribute('collapsed', !visible);
|
||||
document.getElementById('tb-fullscreen').setAttribute('fullscreenmode', !visible);
|
||||
}
|
||||
|
||||
/*
|
||||
|
|
|
@ -81,7 +81,7 @@
|
|||
<toolbarbutton id="tb-add" tooltiptext="&toolbar.newItem.label;" type="menu">
|
||||
<menupopup/>
|
||||
</toolbarbutton>
|
||||
<toolbarbutton label="New Note" oncommand="ScholarPane.newNote();"/>
|
||||
<toolbarbutton id="tb-note-add" tooltiptext="New Standalone Note" oncommand="ScholarPane.newNote();"/>
|
||||
<spacer flex="1"/>
|
||||
<label value="&toolbar.search.label;" control="tb-search"/>
|
||||
<textbox id="tb-search" type="timed" timeout="250" command="cmd_scholar_search"/>
|
||||
|
@ -152,7 +152,7 @@
|
|||
<splitter id="scholar-view-splitter" resizebefore="closest" resizeafter="closest"/>
|
||||
<vbox>
|
||||
<toolbar align="right">
|
||||
<toolbarbutton id="tb-fullscreen" label="Toggle Fullscreen" oncommand="ScholarPane.fullScreen();"/>
|
||||
<toolbarbutton id="tb-fullscreen" tooltiptext="Toggle Fullscreen Mode" oncommand="ScholarPane.fullScreen();"/>
|
||||
<toolbarbutton class="tabs-closebutton" oncommand="ScholarPane.toggleDisplay()"/>
|
||||
</toolbar>
|
||||
<groupbox flex="1">
|
||||
|
|
|
@ -84,11 +84,32 @@
|
|||
list-style-image: url('chrome://scholar/skin/toolbar-item-add.png');
|
||||
}
|
||||
|
||||
#tb-note-add
|
||||
{
|
||||
list-style-image: url('chrome://scholar/skin/toolbar-note-add.png');
|
||||
}
|
||||
|
||||
#tb-item-menu
|
||||
{
|
||||
list-style-image: url('chrome://scholar/skin/cog.png');
|
||||
}
|
||||
|
||||
#tb-fullscreen
|
||||
{
|
||||
list-style-image: url('chrome://scholar/skin/toolbar-fullscreen-bottom.png');
|
||||
}
|
||||
|
||||
#tb-fullscreen[scholartop="true"]
|
||||
{
|
||||
list-style-image: url('chrome://scholar/skin/toolbar-fullscreen-top.png');
|
||||
}
|
||||
|
||||
#tb-fullscreen[fullscreenmode="true"]
|
||||
{
|
||||
background: #666666;
|
||||
-moz-border-radius: 6px;
|
||||
}
|
||||
|
||||
#tb-search
|
||||
{
|
||||
width: 150px;
|
||||
|
|
BIN
chrome/chromeFiles/skin/default/scholar/toolbar-fullscreen-bottom.png
Executable file
BIN
chrome/chromeFiles/skin/default/scholar/toolbar-fullscreen-bottom.png
Executable file
Binary file not shown.
After Width: | Height: | Size: 581 B |
BIN
chrome/chromeFiles/skin/default/scholar/toolbar-fullscreen-top.png
Executable file
BIN
chrome/chromeFiles/skin/default/scholar/toolbar-fullscreen-top.png
Executable file
Binary file not shown.
After Width: | Height: | Size: 585 B |
Binary file not shown.
Before Width: | Height: | Size: 520 B |
BIN
chrome/chromeFiles/skin/default/scholar/toolbar-note-add.png
Executable file
BIN
chrome/chromeFiles/skin/default/scholar/toolbar-note-add.png
Executable file
Binary file not shown.
After Width: | Height: | Size: 641 B |
Loading…
Add table
Reference in a new issue