blob: 32b959c00663e77a93b5f013cad0cf6c59a69356 [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance
* with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied. See the License for the
* specific language governing permissions and limitations
* under the License.
*/
.bookmarks {
text-align: right;
display: none;
@media (min-width: @screen-md-min) {
display: block;
}
&::before {
.icon();
.icon-bookmarks();
width: 14px;
height: 14px;
display: inline-block;
position: relative;
top: 2px;
margin-right: 1px;
color: @link-color;
}
ul {
list-style-type: none;
margin: 0;
padding: 0;
display: inline-block;
font-size: 13px;
li {
display: inline-block;
&::after {
content: ",";
display: inline-block;
margin: 0 3px 0 0;
}
&:last-child {
&::after {
display: none;
}
}
}
}
}