##// END OF EJS Templates
When using apply to children flag in repo group permission...
When using apply to children flag in repo group permission change prompt, RhodeCode only applied this to user groups if repository was private. Only thing that shouldn't be allowed is to change the DEFAULT user permission when repository is private.

File last commit:

r3840:dc464486 beta
r3974:39798d53 default
Show More
contextbar.css
348 lines | 10.7 KiB | text/css | CssLexer
Leonardo
Adding the context bar too all pages related to a Repository....
r3527 /**
* Stylesheets for the context bar
*/
Leonardo Carneiro
Tweaks to Changelog and Summary view, removing excess information, and improving layout.
r3538 #quick .repo_switcher { background-image: url("../images/icons/database.png"); }
#quick .journal { background-image: url("../images/icons/book.png"); }
Implemented simple gist functionality ref #530....
r3840 #quick .gists { background-image: url("../images/icons/note.png"); }
#quick .gists-private { background-image: url("../images/icons/note_error.png"); }
#quick .gists-new { background-image: url("../images/icons/note_add.png"); }
Leonardo Carneiro
Tweaks to Changelog and Summary view, removing excess information, and improving layout.
r3538 #quick .search { background-image: url("../images/icons/search_16.png"); }
#quick .admin { background-image: url("../images/icons/cog_edit.png"); }
Mads Kiilerich
move repo actions from their own menu line to Options menu
r3611 #context-bar a.follow { background-image: url("../images/icons/heart.png"); }
#context-bar a.following { background-image: url("../images/icons/heart_delete.png"); }
small new UI fixes
r3542 #context-bar a.fork { background-image: url("../images/icons/arrow_divide.png"); }
#context-bar a.summary { background-image: url("../images/icons/clipboard_16.png"); }
#context-bar a.changelogs { background-image: url("../images/icons/time.png"); }
#context-bar a.files { background-image: url("../images/icons/file.png"); }
#context-bar a.switch-to { background-image: url("../images/icons/arrow_switch.png"); }
#context-bar a.options { background-image: url("../images/icons/table_gear.png"); }
show forks in contextbar
r3581 #context-bar a.forks { background-image: url("../images/icons/arrow_divide.png"); }
small new UI fixes
r3542 #context-bar a.pull-request { background-image: url("../images/icons/arrow_join.png"); }
#context-bar a.branches { background-image: url("../images/icons/arrow_branch.png"); }
#context-bar a.tags { background-image: url("../images/icons/tag_blue.png"); }
#context-bar a.bookmarks { background-image: url("../images/icons/tag_green.png"); }
#context-bar a.settings { background-image: url("../images/icons/cog.png"); }
#context-bar a.search { background-image: url("../images/icons/search_16.png"); }
#context-bar a.admin { background-image: url("../images/icons/cog_edit.png"); }
Leonardo
Adding the context bar too all pages related to a Repository....
r3527
small new UI fixes
r3542 #context-bar a.journal { background-image: url("../images/icons/book.png"); }
Implemented simple gist functionality ref #530....
r3840 #context-bar a.gists { background-image: url("../images/icons/note.png"); }
#context-bar a.gists-private { background-image: url("../images/icons/note_error.png"); }
#context-bar a.gists-new { background-image: url("../images/icons/note_add.png"); }
small new UI fixes
r3542 #context-bar a.repos { background-image: url("../images/icons/database_edit.png"); }
#context-bar a.repos_groups { background-image: url("../images/icons/database_link.png"); }
#context-bar a.users { background-image: url("../images/icons/user_edit.png"); }
#context-bar a.groups { background-image: url("../images/icons/group_edit.png"); }
#context-bar a.permissions { background-image: url("../images/icons/key.png"); }
#context-bar a.ldap { background-image: url("../images/icons/server_key.png"); }
#context-bar a.defaults { background-image: url("../images/icons/wrench.png"); }
#context-bar a.settings { background-image: url("../images/icons/cog_edit.png"); }
#context-bar a.compare_request { background-image: url('../images/icons/arrow_inout.png')}
#context-bar a.locking_del { background-image: url('../images/icons/lock_delete.png')}
#context-bar a.locking_add { background-image: url('../images/icons/lock_add.png')}
Leonardo
Adding the context bar too all pages related to a Repository....
r3527
#content #context-bar {
Leonardo Carneiro
Style clean up, and comments removal.
r3539 position: relative;
overflow: visible;
Mads Kiilerich
merge the two context menu bar stripes - save some vertical space
r3612 background-color: #336699;
border-top: 1px solid #517da8;
border-bottom: 1px solid #003162;
padding: 0 5px;
min-height: 36px;
Leonardo
Adding the context bar too all pages related to a Repository....
r3527 }
Leonardo Carneiro
Tweaks to Changelog and Summary view, removing excess information, and improving layout.
r3538 #header #header-inner #quick a,
Leonardo
Adding the context bar too all pages related to a Repository....
r3527 #content #context-bar,
Mads Kiilerich
move repo actions from their own menu line to Options menu
r3611 #content #context-bar a {
Mads Kiilerich
Stylistic cleanup - mostly formatting
r3552 color: #FFFFFF;
Leonardo
Adding the context bar too all pages related to a Repository....
r3527 }
Leonardo Carneiro
Tweaks to Changelog and Summary view, removing excess information, and improving layout.
r3538 #header #header-inner #quick a:hover,
Mads Kiilerich
move repo actions from their own menu line to Options menu
r3611 #content #context-bar a:hover {
Mads Kiilerich
Stylistic cleanup - mostly formatting
r3552 text-decoration: none;
Leonardo
Adding the context bar too all pages related to a Repository....
r3527 }
#content #context-bar .icon {
Leonardo Carneiro
Style clean up, and comments removal.
r3539 display: inline-block;
width: 16px;
height: 16px;
vertical-align: text-bottom;
Leonardo
Adding the context bar too all pages related to a Repository....
r3527 }
ul.horizontal-list {
Leonardo Carneiro
Style clean up, and comments removal.
r3539 display: block;
Leonardo
Adding the context bar too all pages related to a Repository....
r3527 }
leonardo
Addding context bar to more repo related pages....
r3529
Leonardo
Adding the context bar too all pages related to a Repository....
r3527 ul.horizontal-list > li {
Leonardo Carneiro
Style clean up, and comments removal.
r3539 float: left;
position: relative;
Leonardo
Adding the context bar too all pages related to a Repository....
r3527 }
Leonardo Carneiro
Tweaks to Changelog and Summary view, removing excess information, and improving layout.
r3538 #header #header-inner #quick ul,
Leonardo
Adding the context bar too all pages related to a Repository....
r3527 ul.horizontal-list > li ul {
Leonardo Carneiro
Style clean up, and comments removal.
r3539 position: absolute;
display: none;
right: 0;
z-index: 999;
Leonardo
Adding the context bar too all pages related to a Repository....
r3527 }
Leonardo Carneiro
Tweaks to Changelog and Summary view, removing excess information, and improving layout.
r3538 #header #header-inner #quick li:hover > ul,
Leonardo
Adding the context bar too all pages related to a Repository....
r3527 ul.horizontal-list li:hover > ul {
Leonardo Carneiro
Style clean up, and comments removal.
r3539 display: block;
Leonardo
Adding the context bar too all pages related to a Repository....
r3527 }
Leonardo Carneiro
Tweaks to Changelog and Summary view, removing excess information, and improving layout.
r3538 #header #header-inner #quick li ul li,
Leonardo
Adding the context bar too all pages related to a Repository....
r3527 ul.horizontal-list ul li {
Leonardo Carneiro
Style clean up, and comments removal.
r3539 position: relative;
border-bottom: 1px solid rgba(0,0,0,0.1);
border-top: 1px solid rgba(255,255,255,0.1);
Leonardo
Adding the context bar too all pages related to a Repository....
r3527 }
ul.horizontal-list > li ul ul {
Leonardo Carneiro
Style clean up, and comments removal.
r3539 position: absolute;
right: 100%;
top: -1px;
min-width: 200px;
max-height: 400px;
small new UI fixes
r3542 overflow-x: hidden;
overflow-y: auto;
Leonardo
Adding the context bar too all pages related to a Repository....
r3527 }
Leonardo Carneiro
Tweaks to Changelog and Summary view, removing excess information, and improving layout.
r3538 #header #header-inner #quick ul a,
ul.horizontal-list li a {
Leonardo Carneiro
Style clean up, and comments removal.
r3539 white-space: nowrap;
Leonardo
Adding the context bar too all pages related to a Repository....
r3527 }
#breadcrumbs {
small new UI fixes
r3542 float: left;
reduce the size of repo in contextbar, it was too big and looked awkward.
r3661 padding: 6px 0 5px 0;
Leonardo Carneiro
Style clean up, and comments removal.
r3539 padding-left: 5px;
font-weight: bold;
font-size: 14px;
Leonardo
Adding the context bar too all pages related to a Repository....
r3527 }
Leonardo Carneiro
Style clean up, and comments removal.
r3539 #breadcrumbs span {
font-weight: bold;
reduce the size of repo in contextbar, it was too big and looked awkward.
r3661 font-size: 1.4em;
Leonardo
Adding the context bar too all pages related to a Repository....
r3527 }
Leonardo Carneiro
Tweaks to Changelog and Summary view, removing excess information, and improving layout.
r3538 #header #header-inner #quick ul,
Leonardo
Adding the context bar too all pages related to a Repository....
r3527 #revision-changer,
#context-pages,
Leonardo Carneiro
Style clean up, and comments removal.
r3539 #context-pages ul {
background: #3b6998; /* Old browsers */
background: -moz-linear-gradient(top, #4574a2 0%, #2f5d8b 100%); /* FF3.6+ */
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#4574a2), color-stop(100%,#2f5d8b)); /* Chrome,Safari4+ */
background: -webkit-linear-gradient(top, #4574a2 0%, #2f5d8b 100%); /* Chrome10+,Safari5.1+ */
background: -o-linear-gradient(top, #4574a2 0%, #2f5d8b 100%); /* Opera 11.10+ */
background: -ms-linear-gradient(top, #4574a2 0%, #2f5d8b 100%); /* IE10+ */
background: linear-gradient(to bottom, #4574a2 0%, #2f5d8b 100%); /* W3C */
/*Filter on IE will also use overflow:hidden implicitly, and that would clip our inner menus.*/
/*filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#4574a2', endColorstr='#2f5d8b',GradientType=0 ); /* IE6-9 */*/
Leonardo
Adding the context bar too all pages related to a Repository....
r3527 }
Leonardo Carneiro
Tweaks to Changelog and Summary view, removing excess information, and improving layout.
r3538 #header #header-inner #quick a,
Leonardo
Adding the context bar too all pages related to a Repository....
r3527 #context-actions a,
#context-pages a {
Leonardo Carneiro
Style clean up, and comments removal.
r3539 background-repeat: no-repeat;
background-position: 10px 50%;
padding-left: 30px;
Leonardo
Adding the context bar too all pages related to a Repository....
r3527 }
Leonardo Carneiro
Tweaks to Changelog and Summary view, removing excess information, and improving layout.
r3538 #quick a,
Leonardo Carneiro
Style clean up, and comments removal.
r3539 #context-pages ul ul a {
padding-left: 10px;
Leonardo
Adding the context bar too all pages related to a Repository....
r3527 }
ul#context-actions {
Leonardo Carneiro
Style clean up, and comments removal.
r3539 display: inline-block;
float: right;
border-radius: 4px;
background-image: linear-gradient(top, #4574a2 0%, #2f5d8b 100%);
Leonardo
Adding the context bar too all pages related to a Repository....
r3527 }
Mads Kiilerich
Stylistic cleanup - mostly formatting
r3552
Leonardo
Adding the context bar too all pages related to a Repository....
r3527 #content ul#context-actions li {
Leonardo Carneiro
Style clean up, and comments removal.
r3539 padding: 0px;
border-right: 1px solid rgba(0,0,0,0.1);
border-left: 1px solid rgba(255,255,255,0.1);
Leonardo
Adding the context bar too all pages related to a Repository....
r3527 }
#context-actions a {
Leonardo Carneiro
Style clean up, and comments removal.
r3539 display: block;
cursor: pointer;
background: none;
border: none;
margin: 0px;
height: auto;
padding: 10px 10px 10px 30px;
background-repeat: no-repeat;
background-position: 10px 50%;
font-size: 1em;
Leonardo
Adding the context bar too all pages related to a Repository....
r3527 }
Leonardo Carneiro
Tweaks to Changelog and Summary view, removing excess information, and improving layout.
r3538 #context-actions a {
Leonardo Carneiro
Style clean up, and comments removal.
r3539 padding: 11px 10px 12px 30px;
Leonardo Carneiro
Tweaks to Changelog and Summary view, removing excess information, and improving layout.
r3538 }
#header #header-inner #quick li:hover,
Leonardo
Adding the context bar too all pages related to a Repository....
r3527 #revision-changer:hover,
#context-pages li:hover,
#context-actions li:hover,
Leonardo Carneiro
Tweaks to Changelog and Summary view, removing excess information, and improving layout.
r3538 #content #context-actions li:hover,
#header #header-inner #quick li.current,
#context-pages li.current {
Leonardo Carneiro
Style clean up, and comments removal.
r3539 background: #6388ad; /* Old browsers */
background: -moz-linear-gradient(top, rgba(255,255,255,0.2) 0%, rgba(255,255,255,0.1) 100%); /* FF3.6+ */
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(255,255,255,0.1)), color-stop(100%,rgba(255,255,255,0))); /* Chrome,Safari4+ */
background: -webkit-linear-gradient(top, rgba(255,255,255,0.2) 0%, rgba(255,255,255,0.1) 100%); /* Chrome10+,Safari5.1+ */
background: -o-linear-gradient(top, rgba(255,255,255,0.2) 0%, rgba(255,255,255,0.1) 100%); /* Opera 11.10+ */
background: -ms-linear-gradient(top, rgba(255,255,255,0.2) 0%, rgba(255,255,255,0.1) 100%); /* IE10+ */
background: linear-gradient(to bottom, rgba(255,255,255,0.2) 0%, rgba(255,255,255,0.1) 100%); /* W3C */
/*filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#88bfe8', endColorstr='#70b0e0',GradientType=0 ); /* IE6-9 */*/
Leonardo
Adding the context bar too all pages related to a Repository....
r3527 }
#content #context-actions li:first-child {
Leonardo Carneiro
Style clean up, and comments removal.
r3539 border-left: none;
small new UI fixes
r3542 border-radius: 4px 0 0px 4px;
Leonardo
Adding the context bar too all pages related to a Repository....
r3527 }
#content #context-actions li:last-child {
Leonardo Carneiro
Style clean up, and comments removal.
r3539 border-right: none;
small new UI fixes
r3542 border-radius: 0 4px 4px 0;
Leonardo
Adding the context bar too all pages related to a Repository....
r3527 }
Mads Kiilerich
move repo actions from their own menu line to Options menu
r3611 #content #context-actions .icon {
Leonardo Carneiro
Style clean up, and comments removal.
r3539 margin: auto;
margin-bottom: 5px;
display: block;
clear: both;
float: none;
Leonardo
Adding the context bar too all pages related to a Repository....
r3527 }
Mads Kiilerich
move repo actions from their own menu line to Options menu
r3611 #content #context-pages .follow .show-following,
#content #context-pages .following .show-follow {
Leonardo Carneiro
Style clean up, and comments removal.
r3539 display: none;
Leonardo
Adding the context bar too all pages related to a Repository....
r3527 }
#context-pages {
Leonardo Carneiro
Style clean up, and comments removal.
r3539 float: right;
border-left: 1px solid rgba(0,0,0,0.1);
Leonardo
Adding the context bar too all pages related to a Repository....
r3527 }
Mads Kiilerich
Stylistic cleanup - mostly formatting
r3552 #context-pages li.current {
Leonardo Carneiro
Style clean up, and comments removal.
r3539 background: #535353; /* Old browsers */
background: -moz-linear-gradient(top, #5d5d5d 0%, #484848 100%); /* FF3.6+ */
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#5d5d5d), color-stop(100%,#484848)); /* Chrome,Safari4+ */
background: -webkit-linear-gradient(top, #5d5d5d 0%, #484848 100%); /* Chrome10+,Safari5.1+ */
background: -o-linear-gradient(top, #5d5d5d 0%, #484848 100%); /* Opera 11.10+ */
background: -ms-linear-gradient(top, #5d5d5d 0%, #484848 100%); /* IE10+ */
background: linear-gradient(to bottom, #5d5d5d 0%, #484848 100%); /* W3C */
Leonardo
Adding the context bar too all pages related to a Repository....
r3527 }
#content #context-pages .icon {
small new UI fixes
r3542 margin-right: 5px;
Leonardo
Adding the context bar too all pages related to a Repository....
r3527 }
Leonardo Carneiro
Tweaks to Changelog and Summary view, removing excess information, and improving layout.
r3538 #header #header-inner #quick li,
Leonardo
Adding the context bar too all pages related to a Repository....
r3527 #content #context-pages li {
Leonardo Carneiro
Style clean up, and comments removal.
r3539 border-right: 1px solid rgba(0,0,0,0.1);
border-left: 1px solid rgba(255,255,255,0.1);
padding: 0;
Leonardo
Adding the context bar too all pages related to a Repository....
r3527 }
Mads Kiilerich
Minor changes
r3717
Leonardo Carneiro
Tweaks to Changelog and Summary view, removing excess information, and improving layout.
r3538 #header #header-inner #quick li:last-child,
Leonardo
Adding the context bar too all pages related to a Repository....
r3527 #content #context-pages li:last-child {
small new UI fixes
r3542 border-right: none;
Leonardo
Adding the context bar too all pages related to a Repository....
r3527 }
Leonardo Carneiro
Fixing user dropdown menu. It now scales acording to the contents....
r3548 #header #header-inner #quick > li:first-child {
small new UI fixes
r3542 border-left: none;
Leonardo Carneiro
Tweaks to Changelog and Summary view, removing excess information, and improving layout.
r3538 }
Leonardo Carneiro
Style clean up, and comments removal.
r3539 #header #header-inner #quick > li:first-child > a {
border-radius: 4px 0 0 4px;
Leonardo Carneiro
Tweaks to Changelog and Summary view, removing excess information, and improving layout.
r3538 }
#header #header-inner #quick a,
Leonardo Carneiro
Style clean up, and comments removal.
r3539 #context-pages a,
#context-pages .admin_menu a {
display: block;
padding: 0px 10px 1px 30px;
padding-left: 30px;
line-height: 35px;
Leonardo
Adding the context bar too all pages related to a Repository....
r3527 }
small new UI fixes
r3542 #header #header-inner #quick a.thin,
#context-pages a.thin,
#context-pages .admin_menu a.thin {
line-height: 28px !important;
}
Leonardo Carneiro
Tweaks to Changelog and Summary view, removing excess information, and improving layout.
r3538 #header #header-inner #quick a#quick_login_link {
Leonardo Carneiro
Style clean up, and comments removal.
r3539 padding-left: 0px;
Leonardo Carneiro
Tweaks to Changelog and Summary view, removing excess information, and improving layout.
r3538 }
#header #header-inner #quick a {
Leonardo Carneiro
Style clean up, and comments removal.
r3539 overflow: hidden;
Leonardo Carneiro
Tweaks to Changelog and Summary view, removing excess information, and improving layout.
r3538 }
#quick a.childs:after,
Leonardo
Adding the context bar too all pages related to a Repository....
r3527 #revision-changer:before,
#context-pages a.childs:after,
#context-pages a.dropdown:after {
Leonardo Carneiro
Style clean up, and comments removal.
r3539 content: ' \25BE';
Leonardo
Adding the context bar too all pages related to a Repository....
r3527 }
Leonardo Carneiro
Tweaks to Changelog and Summary view, removing excess information, and improving layout.
r3538 #context-pages a.childs {
small UI changes for dropdowns on upper menu...
r3546 padding-right: 30px;
Leonardo Carneiro
Tweaks to Changelog and Summary view, removing excess information, and improving layout.
r3538 }
Leonardo Carneiro
Style clean up, and comments removal.
r3539 #context-pages a.childs:after {
position: absolute;
float: right;
padding-left: 5px;
padding-right: 5px;
Leonardo
Adding the context bar too all pages related to a Repository....
r3527 }
#revision-changer:before {
Leonardo Carneiro
Style clean up, and comments removal.
r3539 position: absolute;
top: 0px;
right: 0px;
border-right: 1px solid rgba(0,0,0,0.1);
height: 25px;
padding-top: 10px;
padding-right: 10px;
Leonardo
Adding the context bar too all pages related to a Repository....
r3527 }
#context-pages li:last-child a {
Leonardo Carneiro
Style clean up, and comments removal.
r3539 padding-right: 10px;
Leonardo
Adding the context bar too all pages related to a Repository....
r3527 }
#context-bar #revision-changer {
Leonardo Carneiro
Style clean up, and comments removal.
r3539 position: relative;
cursor: pointer;
border: none;
padding: 0;
margin: 0;
color: #FFFFFF;
font-size: 0.85em;
padding: 2px 15px;
padding-bottom: 3px;
padding-right: 30px;
border-right: 1px solid rgba(255,255,255,0.1);
Leonardo
Adding the context bar too all pages related to a Repository....
r3527 }
#revision-changer .branch-name,
#revision-changer .revision {
Leonardo Carneiro
Style clean up, and comments removal.
r3539 display: block;
text-align: center;
line-height: 1.5em;
Leonardo
Adding the context bar too all pages related to a Repository....
r3527 }
#revision-changer .branch-name {
Leonardo Carneiro
Style clean up, and comments removal.
r3539 font-weight: bold;
Leonardo
Adding the context bar too all pages related to a Repository....
r3527 }
Leonardo Carneiro
Style clean up, and comments removal.
r3539 #revision-changer .revision {
text-transform: uppercase;
codecleaner
r3551 }