mirror of
https://git.selfprivacy.org/SelfPrivacy/selfprivacy.org.git
synced 2024-11-18 14:49:16 +00:00
feat: vendor modules
This commit is contained in:
parent
de9c84858e
commit
70e6f662d3
153
_vendor/github.com/FortAwesome/Font-Awesome/scss/_animated.scss
generated
Normal file
153
_vendor/github.com/FortAwesome/Font-Awesome/scss/_animated.scss
generated
Normal file
|
@ -0,0 +1,153 @@
|
|||
// animating icons
|
||||
// --------------------------
|
||||
|
||||
.#{$fa-css-prefix}-beat {
|
||||
animation-name: #{$fa-css-prefix}-beat;
|
||||
animation-delay: var(--#{$fa-css-prefix}-animation-delay, 0s);
|
||||
animation-direction: var(--#{$fa-css-prefix}-animation-direction, normal);
|
||||
animation-duration: var(--#{$fa-css-prefix}-animation-duration, 1s);
|
||||
animation-iteration-count: var(--#{$fa-css-prefix}-animation-iteration-count, infinite);
|
||||
animation-timing-function: var(--#{$fa-css-prefix}-animation-timing, ease-in-out);
|
||||
}
|
||||
|
||||
.#{$fa-css-prefix}-bounce {
|
||||
animation-name: #{$fa-css-prefix}-bounce;
|
||||
animation-delay: var(--#{$fa-css-prefix}-animation-delay, 0s);
|
||||
animation-direction: var(--#{$fa-css-prefix}-animation-direction, normal);
|
||||
animation-duration: var(--#{$fa-css-prefix}-animation-duration, 1s);
|
||||
animation-iteration-count: var(--#{$fa-css-prefix}-animation-iteration-count, infinite);
|
||||
animation-timing-function: var(--#{$fa-css-prefix}-animation-timing, cubic-bezier(0.280, 0.840, 0.420, 1));
|
||||
}
|
||||
|
||||
.#{$fa-css-prefix}-fade {
|
||||
animation-name: #{$fa-css-prefix}-fade;
|
||||
animation-delay: var(--#{$fa-css-prefix}-animation-delay, 0s);
|
||||
animation-direction: var(--#{$fa-css-prefix}-animation-direction, normal);
|
||||
animation-duration: var(--#{$fa-css-prefix}-animation-duration, 1s);
|
||||
animation-iteration-count: var(--#{$fa-css-prefix}-animation-iteration-count, infinite);
|
||||
animation-timing-function: var(--#{$fa-css-prefix}-animation-timing, cubic-bezier(.4,0,.6,1));
|
||||
}
|
||||
|
||||
.#{$fa-css-prefix}-beat-fade {
|
||||
animation-name: #{$fa-css-prefix}-beat-fade;
|
||||
animation-delay: var(--#{$fa-css-prefix}-animation-delay, 0s);
|
||||
animation-direction: var(--#{$fa-css-prefix}-animation-direction, normal);
|
||||
animation-duration: var(--#{$fa-css-prefix}-animation-duration, 1s);
|
||||
animation-iteration-count: var(--#{$fa-css-prefix}-animation-iteration-count, infinite);
|
||||
animation-timing-function: var(--#{$fa-css-prefix}-animation-timing, cubic-bezier(.4,0,.6,1));
|
||||
}
|
||||
|
||||
.#{$fa-css-prefix}-flip {
|
||||
animation-name: #{$fa-css-prefix}-flip;
|
||||
animation-delay: var(--#{$fa-css-prefix}-animation-delay, 0s);
|
||||
animation-direction: var(--#{$fa-css-prefix}-animation-direction, normal);
|
||||
animation-duration: var(--#{$fa-css-prefix}-animation-duration, 1s);
|
||||
animation-iteration-count: var(--#{$fa-css-prefix}-animation-iteration-count, infinite);
|
||||
animation-timing-function: var(--#{$fa-css-prefix}-animation-timing, ease-in-out);
|
||||
}
|
||||
|
||||
.#{$fa-css-prefix}-shake {
|
||||
animation-name: #{$fa-css-prefix}-shake;
|
||||
animation-delay: var(--#{$fa-css-prefix}-animation-delay, 0s);
|
||||
animation-direction: var(--#{$fa-css-prefix}-animation-direction, normal);
|
||||
animation-duration: var(--#{$fa-css-prefix}-animation-duration, 1s);
|
||||
animation-iteration-count: var(--#{$fa-css-prefix}-animation-iteration-count, infinite);
|
||||
animation-timing-function: var(--#{$fa-css-prefix}-animation-timing, linear);
|
||||
}
|
||||
|
||||
.#{$fa-css-prefix}-spin {
|
||||
animation-name: #{$fa-css-prefix}-spin;
|
||||
animation-delay: var(--#{$fa-css-prefix}-animation-delay, 0s);
|
||||
animation-direction: var(--#{$fa-css-prefix}-animation-direction, normal);
|
||||
animation-duration: var(--#{$fa-css-prefix}-animation-duration, 2s);
|
||||
animation-iteration-count: var(--#{$fa-css-prefix}-animation-iteration-count, infinite);
|
||||
animation-timing-function: var(--#{$fa-css-prefix}-animation-timing, linear);
|
||||
}
|
||||
|
||||
.#{$fa-css-prefix}-spin-reverse {
|
||||
--#{$fa-css-prefix}-animation-direction: reverse;
|
||||
}
|
||||
|
||||
.#{$fa-css-prefix}-pulse,
|
||||
.#{$fa-css-prefix}-spin-pulse {
|
||||
animation-name: #{$fa-css-prefix}-spin;
|
||||
animation-direction: var(--#{$fa-css-prefix}-animation-direction, normal);
|
||||
animation-duration: var(--#{$fa-css-prefix}-animation-duration, 1s);
|
||||
animation-iteration-count: var(--#{$fa-css-prefix}-animation-iteration-count, infinite);
|
||||
animation-timing-function: var(--#{$fa-css-prefix}-animation-timing, steps(8));
|
||||
}
|
||||
|
||||
// if agent or operating system prefers reduced motion, disable animations
|
||||
// see: https://www.smashingmagazine.com/2020/09/design-reduced-motion-sensitivities/
|
||||
// see: https://developer.mozilla.org/en-US/docs/Web/CSS/@media/prefers-reduced-motion
|
||||
@media (prefers-reduced-motion: reduce) {
|
||||
.#{$fa-css-prefix}-beat,
|
||||
.#{$fa-css-prefix}-bounce,
|
||||
.#{$fa-css-prefix}-fade,
|
||||
.#{$fa-css-prefix}-beat-fade,
|
||||
.#{$fa-css-prefix}-flip,
|
||||
.#{$fa-css-prefix}-pulse,
|
||||
.#{$fa-css-prefix}-shake,
|
||||
.#{$fa-css-prefix}-spin,
|
||||
.#{$fa-css-prefix}-spin-pulse {
|
||||
animation-delay: -1ms;
|
||||
animation-duration: 1ms;
|
||||
animation-iteration-count: 1;
|
||||
transition-delay: 0s;
|
||||
transition-duration: 0s;
|
||||
}
|
||||
}
|
||||
|
||||
@keyframes #{$fa-css-prefix}-beat {
|
||||
0%, 90% { transform: scale(1); }
|
||||
45% { transform: scale(var(--#{$fa-css-prefix}-beat-scale, 1.25)); }
|
||||
}
|
||||
|
||||
@keyframes #{$fa-css-prefix}-bounce {
|
||||
0% { transform: scale(1,1) translateY(0); }
|
||||
10% { transform: scale(var(--#{$fa-css-prefix}-bounce-start-scale-x, 1.1),var(--#{$fa-css-prefix}-bounce-start-scale-y, 0.9)) translateY(0); }
|
||||
30% { transform: scale(var(--#{$fa-css-prefix}-bounce-jump-scale-x, 0.9),var(--#{$fa-css-prefix}-bounce-jump-scale-y, 1.1)) translateY(var(--#{$fa-css-prefix}-bounce-height, -0.5em)); }
|
||||
50% { transform: scale(var(--#{$fa-css-prefix}-bounce-land-scale-x, 1.05),var(--#{$fa-css-prefix}-bounce-land-scale-y, 0.95)) translateY(0); }
|
||||
57% { transform: scale(1,1) translateY(var(--#{$fa-css-prefix}-bounce-rebound, -0.125em)); }
|
||||
64% { transform: scale(1,1) translateY(0); }
|
||||
100% { transform: scale(1,1) translateY(0); }
|
||||
}
|
||||
|
||||
@keyframes #{$fa-css-prefix}-fade {
|
||||
50% { opacity: var(--#{$fa-css-prefix}-fade-opacity, 0.4); }
|
||||
}
|
||||
|
||||
@keyframes #{$fa-css-prefix}-beat-fade {
|
||||
0%, 100% {
|
||||
opacity: var(--#{$fa-css-prefix}-beat-fade-opacity, 0.4);
|
||||
transform: scale(1);
|
||||
}
|
||||
50% {
|
||||
opacity: 1;
|
||||
transform: scale(var(--#{$fa-css-prefix}-beat-fade-scale, 1.125));
|
||||
}
|
||||
}
|
||||
|
||||
@keyframes #{$fa-css-prefix}-flip {
|
||||
50% {
|
||||
transform: rotate3d(var(--#{$fa-css-prefix}-flip-x, 0), var(--#{$fa-css-prefix}-flip-y, 1), var(--#{$fa-css-prefix}-flip-z, 0), var(--#{$fa-css-prefix}-flip-angle, -180deg));
|
||||
}
|
||||
}
|
||||
|
||||
@keyframes #{$fa-css-prefix}-shake {
|
||||
0% { transform: rotate(-15deg); }
|
||||
4% { transform: rotate(15deg); }
|
||||
8%, 24% { transform: rotate(-18deg); }
|
||||
12%, 28% { transform: rotate(18deg); }
|
||||
16% { transform: rotate(-22deg); }
|
||||
20% { transform: rotate(22deg); }
|
||||
32% { transform: rotate(-12deg); }
|
||||
36% { transform: rotate(12deg); }
|
||||
40%, 100% { transform: rotate(0deg); }
|
||||
}
|
||||
|
||||
@keyframes #{$fa-css-prefix}-spin {
|
||||
0% { transform: rotate(0deg); }
|
||||
100% { transform: rotate(360deg); }
|
||||
}
|
||||
|
20
_vendor/github.com/FortAwesome/Font-Awesome/scss/_bordered-pulled.scss
generated
Normal file
20
_vendor/github.com/FortAwesome/Font-Awesome/scss/_bordered-pulled.scss
generated
Normal file
|
@ -0,0 +1,20 @@
|
|||
// bordered + pulled icons
|
||||
// -------------------------
|
||||
|
||||
.#{$fa-css-prefix}-border {
|
||||
border-color: var(--#{$fa-css-prefix}-border-color, #{$fa-border-color});
|
||||
border-radius: var(--#{$fa-css-prefix}-border-radius, #{$fa-border-radius});
|
||||
border-style: var(--#{$fa-css-prefix}-border-style, #{$fa-border-style});
|
||||
border-width: var(--#{$fa-css-prefix}-border-width, #{$fa-border-width});
|
||||
padding: var(--#{$fa-css-prefix}-border-padding, #{$fa-border-padding});
|
||||
}
|
||||
|
||||
.#{$fa-css-prefix}-pull-left {
|
||||
float: left;
|
||||
margin-right: var(--#{$fa-css-prefix}-pull-margin, #{$fa-pull-margin});
|
||||
}
|
||||
|
||||
.#{$fa-css-prefix}-pull-right {
|
||||
float: right;
|
||||
margin-left: var(--#{$fa-css-prefix}-pull-margin, #{$fa-pull-margin});
|
||||
}
|
43
_vendor/github.com/FortAwesome/Font-Awesome/scss/_core.scss
generated
Normal file
43
_vendor/github.com/FortAwesome/Font-Awesome/scss/_core.scss
generated
Normal file
|
@ -0,0 +1,43 @@
|
|||
// base icon class definition
|
||||
// -------------------------
|
||||
|
||||
.#{$fa-css-prefix} {
|
||||
font-family: var(--#{$fa-css-prefix}-style-family, '#{$fa-style-family}');
|
||||
font-weight: var(--#{$fa-css-prefix}-style, #{$fa-style});
|
||||
}
|
||||
|
||||
.#{$fa-css-prefix},
|
||||
.#{$fa-css-prefix}-classic,
|
||||
.#{$fa-css-prefix}-sharp,
|
||||
.fas,
|
||||
.#{$fa-css-prefix}-solid,
|
||||
.far,
|
||||
.#{$fa-css-prefix}-regular,
|
||||
.fab,
|
||||
.#{$fa-css-prefix}-brands {
|
||||
-moz-osx-font-smoothing: grayscale;
|
||||
-webkit-font-smoothing: antialiased;
|
||||
display: var(--#{$fa-css-prefix}-display, #{$fa-display});
|
||||
font-style: normal;
|
||||
font-variant: normal;
|
||||
line-height: 1;
|
||||
text-rendering: auto;
|
||||
}
|
||||
|
||||
.fas,
|
||||
.#{$fa-css-prefix}-classic,
|
||||
.#{$fa-css-prefix}-solid,
|
||||
.far,
|
||||
.#{$fa-css-prefix}-regular {
|
||||
font-family: 'Font Awesome 6 Free';
|
||||
}
|
||||
|
||||
.fab,
|
||||
.#{$fa-css-prefix}-brands {
|
||||
font-family: 'Font Awesome 6 Brands';
|
||||
}
|
||||
|
||||
|
||||
%fa-icon {
|
||||
@include fa-icon;
|
||||
}
|
7
_vendor/github.com/FortAwesome/Font-Awesome/scss/_fixed-width.scss
generated
Normal file
7
_vendor/github.com/FortAwesome/Font-Awesome/scss/_fixed-width.scss
generated
Normal file
|
@ -0,0 +1,7 @@
|
|||
// fixed-width icons
|
||||
// -------------------------
|
||||
|
||||
.#{$fa-css-prefix}-fw {
|
||||
text-align: center;
|
||||
width: $fa-fw-width;
|
||||
}
|
57
_vendor/github.com/FortAwesome/Font-Awesome/scss/_functions.scss
generated
Normal file
57
_vendor/github.com/FortAwesome/Font-Awesome/scss/_functions.scss
generated
Normal file
|
@ -0,0 +1,57 @@
|
|||
// functions
|
||||
// --------------------------
|
||||
|
||||
// fa-content: convenience function used to set content property
|
||||
@function fa-content($fa-var) {
|
||||
@return unquote("\"#{ $fa-var }\"");
|
||||
}
|
||||
|
||||
// fa-divide: Originally obtained from the Bootstrap https://github.com/twbs/bootstrap
|
||||
//
|
||||
// Licensed under: The MIT License (MIT)
|
||||
//
|
||||
// Copyright (c) 2011-2021 Twitter, Inc.
|
||||
// Copyright (c) 2011-2021 The Bootstrap Authors
|
||||
//
|
||||
// Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||
// of this software and associated documentation files (the "Software"), to deal
|
||||
// in the Software without restriction, including without limitation the rights
|
||||
// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
||||
// copies of the Software, and to permit persons to whom the Software is
|
||||
// furnished to do so, subject to the following conditions:
|
||||
//
|
||||
// The above copyright notice and this permission notice shall be included in
|
||||
// all copies or substantial portions of the Software.
|
||||
//
|
||||
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||
// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||
// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
||||
// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
||||
// THE SOFTWARE.
|
||||
|
||||
@function fa-divide($dividend, $divisor, $precision: 10) {
|
||||
$sign: if($dividend > 0 and $divisor > 0, 1, -1);
|
||||
$dividend: abs($dividend);
|
||||
$divisor: abs($divisor);
|
||||
$quotient: 0;
|
||||
$remainder: $dividend;
|
||||
@if $dividend == 0 {
|
||||
@return 0;
|
||||
}
|
||||
@if $divisor == 0 {
|
||||
@error "Cannot divide by 0";
|
||||
}
|
||||
@if $divisor == 1 {
|
||||
@return $dividend;
|
||||
}
|
||||
@while $remainder >= $divisor {
|
||||
$quotient: $quotient + 1;
|
||||
$remainder: $remainder - $divisor;
|
||||
}
|
||||
@if $remainder > 0 and $precision > 0 {
|
||||
$remainder: fa-divide($remainder * 10, $divisor, $precision - 1) * .1;
|
||||
}
|
||||
@return ($quotient + $remainder) * $sign;
|
||||
}
|
9
_vendor/github.com/FortAwesome/Font-Awesome/scss/_icons.scss
generated
Normal file
9
_vendor/github.com/FortAwesome/Font-Awesome/scss/_icons.scss
generated
Normal file
|
@ -0,0 +1,9 @@
|
|||
// specific icon class definition
|
||||
// -------------------------
|
||||
|
||||
/* Font Awesome uses the Unicode Private Use Area (PUA) to ensure screen
|
||||
readers do not read off random characters that represent icons */
|
||||
|
||||
@each $name, $icon in $fa-icons {
|
||||
.#{$fa-css-prefix}-#{$name}::before { content: unquote("\"#{ $icon }\""); }
|
||||
}
|
18
_vendor/github.com/FortAwesome/Font-Awesome/scss/_list.scss
generated
Normal file
18
_vendor/github.com/FortAwesome/Font-Awesome/scss/_list.scss
generated
Normal file
|
@ -0,0 +1,18 @@
|
|||
// icons in a list
|
||||
// -------------------------
|
||||
|
||||
.#{$fa-css-prefix}-ul {
|
||||
list-style-type: none;
|
||||
margin-left: var(--#{$fa-css-prefix}-li-margin, #{$fa-li-margin});
|
||||
padding-left: 0;
|
||||
|
||||
> li { position: relative; }
|
||||
}
|
||||
|
||||
.#{$fa-css-prefix}-li {
|
||||
left: calc(var(--#{$fa-css-prefix}-li-width, #{$fa-li-width}) * -1);
|
||||
position: absolute;
|
||||
text-align: center;
|
||||
width: var(--#{$fa-css-prefix}-li-width, #{$fa-li-width});
|
||||
line-height: inherit;
|
||||
}
|
75
_vendor/github.com/FortAwesome/Font-Awesome/scss/_mixins.scss
generated
Normal file
75
_vendor/github.com/FortAwesome/Font-Awesome/scss/_mixins.scss
generated
Normal file
|
@ -0,0 +1,75 @@
|
|||
// mixins
|
||||
// --------------------------
|
||||
|
||||
// base rendering for an icon
|
||||
@mixin fa-icon {
|
||||
-webkit-font-smoothing: antialiased;
|
||||
-moz-osx-font-smoothing: grayscale;
|
||||
display: inline-block;
|
||||
font-style: normal;
|
||||
font-variant: normal;
|
||||
font-weight: normal;
|
||||
line-height: 1;
|
||||
}
|
||||
|
||||
// sets relative font-sizing and alignment (in _sizing)
|
||||
@mixin fa-size ($font-size) {
|
||||
font-size: fa-divide($font-size, $fa-size-scale-base) * 1em; // converts step in sizing scale into an em-based value that's relative to the scale's base
|
||||
line-height: fa-divide(1, $font-size) * 1em; // sets the line-height of the icon back to that of it's parent
|
||||
vertical-align: (fa-divide(6, $font-size) - fa-divide(3, 8)) * 1em; // vertically centers the icon taking into account the surrounding text's descender
|
||||
}
|
||||
|
||||
// only display content to screen readers
|
||||
// see: https://www.a11yproject.com/posts/2013-01-11-how-to-hide-content/
|
||||
// see: https://hugogiraudel.com/2016/10/13/css-hide-and-seek/
|
||||
@mixin fa-sr-only() {
|
||||
position: absolute;
|
||||
width: 1px;
|
||||
height: 1px;
|
||||
padding: 0;
|
||||
margin: -1px;
|
||||
overflow: hidden;
|
||||
clip: rect(0, 0, 0, 0);
|
||||
white-space: nowrap;
|
||||
border-width: 0;
|
||||
}
|
||||
|
||||
// use in conjunction with .sr-only to only display content when it's focused
|
||||
@mixin fa-sr-only-focusable() {
|
||||
&:not(:focus) {
|
||||
@include fa-sr-only();
|
||||
}
|
||||
}
|
||||
|
||||
// sets a specific icon family to use alongside style + icon mixins
|
||||
|
||||
// convenience mixins for declaring pseudo-elements by CSS variable,
|
||||
// including all style-specific font properties, and both the ::before
|
||||
// and ::after elements in the duotone case.
|
||||
@mixin fa-icon-solid($fa-var) {
|
||||
@extend %fa-icon;
|
||||
@extend .fa-solid;
|
||||
|
||||
&::before {
|
||||
content: unquote("\"#{ $fa-var }\"");
|
||||
}
|
||||
}
|
||||
|
||||
@mixin fa-icon-regular($fa-var) {
|
||||
@extend %fa-icon;
|
||||
@extend .fa-regular;
|
||||
|
||||
&::before {
|
||||
content: unquote("\"#{ $fa-var }\"");
|
||||
}
|
||||
}
|
||||
|
||||
@mixin fa-icon-brands($fa-var) {
|
||||
@extend %fa-icon;
|
||||
@extend .fa-brands;
|
||||
|
||||
&::before {
|
||||
content: unquote("\"#{ $fa-var }\"");
|
||||
}
|
||||
}
|
||||
|
31
_vendor/github.com/FortAwesome/Font-Awesome/scss/_rotated-flipped.scss
generated
Normal file
31
_vendor/github.com/FortAwesome/Font-Awesome/scss/_rotated-flipped.scss
generated
Normal file
|
@ -0,0 +1,31 @@
|
|||
// rotating + flipping icons
|
||||
// -------------------------
|
||||
|
||||
.#{$fa-css-prefix}-rotate-90 {
|
||||
transform: rotate(90deg);
|
||||
}
|
||||
|
||||
.#{$fa-css-prefix}-rotate-180 {
|
||||
transform: rotate(180deg);
|
||||
}
|
||||
|
||||
.#{$fa-css-prefix}-rotate-270 {
|
||||
transform: rotate(270deg);
|
||||
}
|
||||
|
||||
.#{$fa-css-prefix}-flip-horizontal {
|
||||
transform: scale(-1, 1);
|
||||
}
|
||||
|
||||
.#{$fa-css-prefix}-flip-vertical {
|
||||
transform: scale(1, -1);
|
||||
}
|
||||
|
||||
.#{$fa-css-prefix}-flip-both,
|
||||
.#{$fa-css-prefix}-flip-horizontal.#{$fa-css-prefix}-flip-vertical {
|
||||
transform: scale(-1, -1);
|
||||
}
|
||||
|
||||
.#{$fa-css-prefix}-rotate-by {
|
||||
transform: rotate(var(--#{$fa-css-prefix}-rotate-angle, none));
|
||||
}
|
14
_vendor/github.com/FortAwesome/Font-Awesome/scss/_screen-reader.scss
generated
Normal file
14
_vendor/github.com/FortAwesome/Font-Awesome/scss/_screen-reader.scss
generated
Normal file
|
@ -0,0 +1,14 @@
|
|||
// screen-reader utilities
|
||||
// -------------------------
|
||||
|
||||
// only display content to screen readers
|
||||
.sr-only,
|
||||
.#{$fa-css-prefix}-sr-only {
|
||||
@include fa-sr-only;
|
||||
}
|
||||
|
||||
// use in conjunction with .sr-only to only display content when it's focused
|
||||
.sr-only-focusable,
|
||||
.#{$fa-css-prefix}-sr-only-focusable {
|
||||
@include fa-sr-only-focusable;
|
||||
}
|
2042
_vendor/github.com/FortAwesome/Font-Awesome/scss/_shims.scss
generated
Normal file
2042
_vendor/github.com/FortAwesome/Font-Awesome/scss/_shims.scss
generated
Normal file
File diff suppressed because it is too large
Load diff
16
_vendor/github.com/FortAwesome/Font-Awesome/scss/_sizing.scss
generated
Normal file
16
_vendor/github.com/FortAwesome/Font-Awesome/scss/_sizing.scss
generated
Normal file
|
@ -0,0 +1,16 @@
|
|||
// sizing icons
|
||||
// -------------------------
|
||||
|
||||
// literal magnification scale
|
||||
@for $i from 1 through 10 {
|
||||
.#{$fa-css-prefix}-#{$i}x {
|
||||
font-size: $i * 1em;
|
||||
}
|
||||
}
|
||||
|
||||
// step-based scale (with alignment)
|
||||
@each $size, $value in $fa-sizes {
|
||||
.#{$fa-css-prefix}-#{$size} {
|
||||
@include fa-size($value);
|
||||
}
|
||||
}
|
32
_vendor/github.com/FortAwesome/Font-Awesome/scss/_stacked.scss
generated
Normal file
32
_vendor/github.com/FortAwesome/Font-Awesome/scss/_stacked.scss
generated
Normal file
|
@ -0,0 +1,32 @@
|
|||
// stacking icons
|
||||
// -------------------------
|
||||
|
||||
.#{$fa-css-prefix}-stack {
|
||||
display: inline-block;
|
||||
height: 2em;
|
||||
line-height: 2em;
|
||||
position: relative;
|
||||
vertical-align: $fa-stack-vertical-align;
|
||||
width: $fa-stack-width;
|
||||
}
|
||||
|
||||
.#{$fa-css-prefix}-stack-1x,
|
||||
.#{$fa-css-prefix}-stack-2x {
|
||||
left: 0;
|
||||
position: absolute;
|
||||
text-align: center;
|
||||
width: 100%;
|
||||
z-index: var(--#{$fa-css-prefix}-stack-z-index, #{$fa-stack-z-index});
|
||||
}
|
||||
|
||||
.#{$fa-css-prefix}-stack-1x {
|
||||
line-height: inherit;
|
||||
}
|
||||
|
||||
.#{$fa-css-prefix}-stack-2x {
|
||||
font-size: 2em;
|
||||
}
|
||||
|
||||
.#{$fa-css-prefix}-inverse {
|
||||
color: var(--#{$fa-css-prefix}-inverse, #{$fa-inverse});
|
||||
}
|
4951
_vendor/github.com/FortAwesome/Font-Awesome/scss/_variables.scss
generated
Normal file
4951
_vendor/github.com/FortAwesome/Font-Awesome/scss/_variables.scss
generated
Normal file
File diff suppressed because it is too large
Load diff
30
_vendor/github.com/FortAwesome/Font-Awesome/scss/brands.scss
generated
Normal file
30
_vendor/github.com/FortAwesome/Font-Awesome/scss/brands.scss
generated
Normal file
|
@ -0,0 +1,30 @@
|
|||
/*!
|
||||
* Font Awesome Free 6.2.0 by @fontawesome - https://fontawesome.com
|
||||
* License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License)
|
||||
* Copyright 2022 Fonticons, Inc.
|
||||
*/
|
||||
@import 'functions';
|
||||
@import 'variables';
|
||||
|
||||
:root, :host {
|
||||
--#{$fa-css-prefix}-style-family-brands: 'Font Awesome 6 Brands';
|
||||
--#{$fa-css-prefix}-font-brands: normal 400 1em/1 'Font Awesome 6 Brands';
|
||||
}
|
||||
|
||||
@font-face {
|
||||
font-family: 'Font Awesome 6 Brands';
|
||||
font-style: normal;
|
||||
font-weight: 400;
|
||||
font-display: $fa-font-display;
|
||||
src: url('#{$fa-font-path}/fa-brands-400.woff2') format('woff2'),
|
||||
url('#{$fa-font-path}/fa-brands-400.ttf') format('truetype');
|
||||
}
|
||||
|
||||
.fab,
|
||||
.#{$fa-css-prefix}-brands {
|
||||
font-weight: 400;
|
||||
}
|
||||
|
||||
@each $name, $icon in $fa-brand-icons {
|
||||
.#{$fa-css-prefix}-#{$name}:before { content: unquote("\"#{ $icon }\""); }
|
||||
}
|
21
_vendor/github.com/FortAwesome/Font-Awesome/scss/fontawesome.scss
generated
vendored
Normal file
21
_vendor/github.com/FortAwesome/Font-Awesome/scss/fontawesome.scss
generated
vendored
Normal file
|
@ -0,0 +1,21 @@
|
|||
/*!
|
||||
* Font Awesome Free 6.2.0 by @fontawesome - https://fontawesome.com
|
||||
* License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License)
|
||||
* Copyright 2022 Fonticons, Inc.
|
||||
*/
|
||||
// Font Awesome core compile (Web Fonts-based)
|
||||
// -------------------------
|
||||
|
||||
@import 'functions';
|
||||
@import 'variables';
|
||||
@import 'mixins';
|
||||
@import 'core';
|
||||
@import 'sizing';
|
||||
@import 'fixed-width';
|
||||
@import 'list';
|
||||
@import 'bordered-pulled';
|
||||
@import 'animated';
|
||||
@import 'rotated-flipped';
|
||||
@import 'stacked';
|
||||
@import 'icons';
|
||||
@import 'screen-reader';
|
26
_vendor/github.com/FortAwesome/Font-Awesome/scss/regular.scss
generated
Normal file
26
_vendor/github.com/FortAwesome/Font-Awesome/scss/regular.scss
generated
Normal file
|
@ -0,0 +1,26 @@
|
|||
/*!
|
||||
* Font Awesome Free 6.2.0 by @fontawesome - https://fontawesome.com
|
||||
* License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License)
|
||||
* Copyright 2022 Fonticons, Inc.
|
||||
*/
|
||||
@import 'functions';
|
||||
@import 'variables';
|
||||
|
||||
:root, :host {
|
||||
--#{$fa-css-prefix}-style-family-classic: '#{ $fa-style-family }';
|
||||
--#{$fa-css-prefix}-font-regular: normal 400 1em/1 '#{ $fa-style-family }';
|
||||
}
|
||||
|
||||
@font-face {
|
||||
font-family: 'Font Awesome 6 Free';
|
||||
font-style: normal;
|
||||
font-weight: 400;
|
||||
font-display: $fa-font-display;
|
||||
src: url('#{$fa-font-path}/fa-regular-400.woff2') format('woff2'),
|
||||
url('#{$fa-font-path}/fa-regular-400.ttf') format('truetype');
|
||||
}
|
||||
|
||||
.far,
|
||||
.#{$fa-css-prefix}-regular {
|
||||
font-weight: 400;
|
||||
}
|
26
_vendor/github.com/FortAwesome/Font-Awesome/scss/solid.scss
generated
Normal file
26
_vendor/github.com/FortAwesome/Font-Awesome/scss/solid.scss
generated
Normal file
|
@ -0,0 +1,26 @@
|
|||
/*!
|
||||
* Font Awesome Free 6.2.0 by @fontawesome - https://fontawesome.com
|
||||
* License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License)
|
||||
* Copyright 2022 Fonticons, Inc.
|
||||
*/
|
||||
@import 'functions';
|
||||
@import 'variables';
|
||||
|
||||
:root, :host {
|
||||
--#{$fa-css-prefix}-style-family-classic: '#{ $fa-style-family }';
|
||||
--#{$fa-css-prefix}-font-solid: normal 900 1em/1 '#{ $fa-style-family }';
|
||||
}
|
||||
|
||||
@font-face {
|
||||
font-family: 'Font Awesome 6 Free';
|
||||
font-style: normal;
|
||||
font-weight: 900;
|
||||
font-display: $fa-font-display;
|
||||
src: url('#{$fa-font-path}/fa-solid-900.woff2') format('woff2'),
|
||||
url('#{$fa-font-path}/fa-solid-900.ttf') format('truetype');
|
||||
}
|
||||
|
||||
.fas,
|
||||
.#{$fa-css-prefix}-solid {
|
||||
font-weight: 900;
|
||||
}
|
11
_vendor/github.com/FortAwesome/Font-Awesome/scss/v4-shims.scss
generated
Normal file
11
_vendor/github.com/FortAwesome/Font-Awesome/scss/v4-shims.scss
generated
Normal file
|
@ -0,0 +1,11 @@
|
|||
/*!
|
||||
* Font Awesome Free 6.2.0 by @fontawesome - https://fontawesome.com
|
||||
* License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License)
|
||||
* Copyright 2022 Fonticons, Inc.
|
||||
*/
|
||||
// V4 shims compile (Web Fonts-based)
|
||||
// -------------------------
|
||||
|
||||
@import 'functions';
|
||||
@import 'variables';
|
||||
@import 'shims';
|
BIN
_vendor/github.com/FortAwesome/Font-Awesome/webfonts/fa-brands-400.ttf
generated
Normal file
BIN
_vendor/github.com/FortAwesome/Font-Awesome/webfonts/fa-brands-400.ttf
generated
Normal file
Binary file not shown.
BIN
_vendor/github.com/FortAwesome/Font-Awesome/webfonts/fa-brands-400.woff2
generated
Normal file
BIN
_vendor/github.com/FortAwesome/Font-Awesome/webfonts/fa-brands-400.woff2
generated
Normal file
Binary file not shown.
BIN
_vendor/github.com/FortAwesome/Font-Awesome/webfonts/fa-regular-400.ttf
generated
Normal file
BIN
_vendor/github.com/FortAwesome/Font-Awesome/webfonts/fa-regular-400.ttf
generated
Normal file
Binary file not shown.
BIN
_vendor/github.com/FortAwesome/Font-Awesome/webfonts/fa-regular-400.woff2
generated
Normal file
BIN
_vendor/github.com/FortAwesome/Font-Awesome/webfonts/fa-regular-400.woff2
generated
Normal file
Binary file not shown.
BIN
_vendor/github.com/FortAwesome/Font-Awesome/webfonts/fa-solid-900.ttf
generated
Normal file
BIN
_vendor/github.com/FortAwesome/Font-Awesome/webfonts/fa-solid-900.ttf
generated
Normal file
Binary file not shown.
BIN
_vendor/github.com/FortAwesome/Font-Awesome/webfonts/fa-solid-900.woff2
generated
Normal file
BIN
_vendor/github.com/FortAwesome/Font-Awesome/webfonts/fa-solid-900.woff2
generated
Normal file
Binary file not shown.
BIN
_vendor/github.com/FortAwesome/Font-Awesome/webfonts/fa-v4compatibility.ttf
generated
Normal file
BIN
_vendor/github.com/FortAwesome/Font-Awesome/webfonts/fa-v4compatibility.ttf
generated
Normal file
Binary file not shown.
BIN
_vendor/github.com/FortAwesome/Font-Awesome/webfonts/fa-v4compatibility.woff2
generated
Normal file
BIN
_vendor/github.com/FortAwesome/Font-Awesome/webfonts/fa-v4compatibility.woff2
generated
Normal file
Binary file not shown.
BIN
_vendor/github.com/google/docsy/assets/icons/logo.png
generated
Normal file
BIN
_vendor/github.com/google/docsy/assets/icons/logo.png
generated
Normal file
Binary file not shown.
After Width: | Height: | Size: 52 KiB |
237
_vendor/github.com/google/docsy/assets/icons/logo.svg
generated
Normal file
237
_vendor/github.com/google/docsy/assets/icons/logo.svg
generated
Normal file
|
@ -0,0 +1,237 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 23.0.3, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||
viewBox="0 0 500 500" style="enable-background:new 0 0 500 500;" xml:space="preserve">
|
||||
<g>
|
||||
<path style="fill:#FFFFFF;" d="M116.8525,421.9722c-5.7041,0-10.3442-4.3127-10.3442-9.6129V88.183
|
||||
c0-5.3002,4.6401-9.6117,10.3442-9.6117H320.858c3.0347,0,9.3959,0.5498,11.7506,2.6302l0.3545,0.3442l58.905,63.2912
|
||||
c2.3101,2.491,2.9202,8.4928,2.9202,11.3184v256.2039c0,5.3002-4.6407,9.6129-10.3436,9.6129H116.8525z"/>
|
||||
<g>
|
||||
<g>
|
||||
<g>
|
||||
<path style="fill:#767676;" d="M384.4445,423.2066H116.852c-6.3839,0-11.5786-4.8658-11.5786-10.8474V88.1831
|
||||
c0-5.9804,5.1947-10.8461,11.5786-10.8461h204.0062c0.377,0,9.2786,0.0329,12.568,2.9389l0.3947,0.3833l58.9508,63.337
|
||||
c3.2135,3.4652,3.2514,11.7924,3.2514,12.1593v256.2036C396.0231,418.3408,390.8284,423.2066,384.4445,423.2066z
|
||||
M116.5079,411.9189c0.0848,0.0278,0.1999,0.0531,0.3441,0.0531h267.5925c0.1442,0,0.2581-0.0253,0.3441-0.0531V156.1556
|
||||
c-0.0076-0.9033-0.3593-3.7347-0.7034-5.0037l-57.6527-61.9416c-1.4651-0.3176-4.4533-0.6389-5.5742-0.6389H116.852
|
||||
c-0.143,0-0.2594,0.024-0.3441,0.0531V411.9189z M383.9612,150.7699L383.9612,150.7699L383.9612,150.7699z M327.0321,89.371
|
||||
v0.0013V89.371z"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g>
|
||||
<g>
|
||||
<path style="fill:#5B7FC0;" d="M189.0874,210.1754l0.0012-0.0012c7.7751,0.0012,15.0295,4.1862,18.932,10.9234
|
||||
c1.9177,3.3159,2.9305,7.1011,2.9293,10.9378c0,5.8394-2.2733,11.3304-6.4032,15.4604
|
||||
c-4.1288,4.1288-9.6186,6.4032-15.458,6.4032c-5.8394,0-11.328-2.2733-15.458-6.4032s-6.4032-9.6186-6.4056-15.4628
|
||||
c0.0012-6.025,2.454-11.4897,6.4116-15.4473C177.5953,212.627,183.0601,210.1742,189.0874,210.1754z M197.0804,232.033
|
||||
c0.0012-1.4042-0.3687-2.7868-1.063-3.9887c-1.4293-2.4684-4.0833-3.9995-6.9299-4.0019c-4.4077,0.0024-7.993,3.5877-7.993,7.993
|
||||
c0,2.1356,0.832,4.1431,2.3427,5.6539c1.5083,1.5083,3.5159,2.3403,5.6503,2.3415c2.1356,0,4.1443-0.8308,5.6539-2.3403
|
||||
S197.0816,234.1722,197.0804,232.033z"/>
|
||||
<path style="opacity:0.3;fill:#FFFFFF;" d="M189.0898,210.176c7.7763,0,15.0283,4.1826,18.926,10.9151
|
||||
c1.9201,3.3136,2.9377,7.0988,2.9353,10.9462c0.0024,12.0643-9.8065,21.8636-21.8613,21.8613
|
||||
c-12.0547,0.0024-21.8636-9.8066-21.8612-21.8613c0-6.0285,2.4516-11.4921,6.4116-15.452
|
||||
C177.5977,212.6276,183.0612,210.176,189.0898,210.176z M197.0839,232.0372c0-1.4078-0.3711-2.7892-1.0702-3.9959
|
||||
c-1.4269-2.466-4.0797-3.9983-6.924-3.9983c-4.4005-0.0048-7.9918,3.5817-7.9942,7.9942
|
||||
c0.0024,4.4077,3.5865,7.9918,7.9942,7.9942c2.2027,0,4.2018-0.8978,5.6479-2.3439
|
||||
C196.1861,236.239,197.0839,234.2399,197.0839,232.0372z"/>
|
||||
<g>
|
||||
<defs>
|
||||
<path id="SVGID_1_" d="M194.7376,237.6875c-1.4461,1.4461-3.4452,2.3439-5.6479,2.3439
|
||||
c-4.4077-0.0024-7.9918-3.5865-7.9942-7.9942c0.0024-4.4125,3.5937-7.999,7.9942-7.9942c2.8443,0,5.497,1.5323,6.924,3.9983
|
||||
c0.6991,1.2067,1.0702,2.5881,1.0702,3.9959C197.0839,234.2399,196.1861,236.239,194.7376,237.6875z"/>
|
||||
</defs>
|
||||
<clipPath id="SVGID_2_">
|
||||
<use xlink:href="#SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
<path style="clip-path:url(#SVGID_2_);fill:#FFFFFF;" d="M190.0704,225.0237c-4.4005-0.0048-7.9918,3.5817-7.9942,7.9942
|
||||
c0.0011,1.9546,0.7088,3.7452,1.8782,5.1354c-1.7447-1.4674-2.8575-3.663-2.8588-6.116
|
||||
c0.0024-4.4125,3.5936-7.999,7.9942-7.9942c2.3802-0.0001,4.616,1.0833,6.1218,2.8788
|
||||
C193.7885,225.7247,191.9774,225.0237,190.0704,225.0237z"/>
|
||||
<path style="opacity:0.13;clip-path:url(#SVGID_2_);fill:#020202;" d="M190.0704,225.0237
|
||||
c-4.4005-0.0048-7.9918,3.5817-7.9942,7.9942c0.0011,1.9546,0.7088,3.7452,1.8782,5.1354
|
||||
c-1.7447-1.4674-2.8575-3.663-2.8588-6.116c0.0024-4.4125,3.5936-7.999,7.9942-7.9942c2.3802-0.0001,4.616,1.0833,6.1218,2.8788
|
||||
C193.7885,225.7247,191.9774,225.0237,190.0704,225.0237z"/>
|
||||
</g>
|
||||
<g>
|
||||
<defs>
|
||||
<path id="SVGID_3_" d="M189.0898,210.176c7.7763,0,15.0283,4.1826,18.926,10.9151c1.9201,3.3136,2.9377,7.0988,2.9353,10.9462
|
||||
c0.0024,12.0643-9.8065,21.8636-21.8613,21.8613c-12.0547,0.0024-21.8636-9.8066-21.8612-21.8613
|
||||
c0-6.0285,2.4516-11.4921,6.4116-15.452C177.5977,212.6276,183.0612,210.176,189.0898,210.176z M197.0839,232.0372
|
||||
c0-1.4078-0.3711-2.7892-1.0702-3.9959c-1.4269-2.466-4.0797-3.9983-6.924-3.9983c-4.4005-0.0048-7.9918,3.5817-7.9942,7.9942
|
||||
c0.0024,4.4077,3.5865,7.9918,7.9942,7.9942c2.2027,0,4.2018-0.8978,5.6479-2.3439
|
||||
C196.1861,236.239,197.0839,234.2399,197.0839,232.0372z"/>
|
||||
</defs>
|
||||
<clipPath id="SVGID_4_">
|
||||
<use xlink:href="#SVGID_3_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
<path style="clip-path:url(#SVGID_4_);fill:#5B7FC0;" d="M172.6595,215.6045c-3.96,3.96-6.4116,9.4235-6.4116,15.452
|
||||
c-0.0024,12.0547,9.8066,21.8636,21.8613,21.8612c12.0547,0.0024,21.8636-9.797,21.8613-21.8612
|
||||
c0.0024-3.8475-1.0151-7.6326-2.9353-10.9462c-3.8977-6.7324-11.1497-10.9151-18.926-10.9151
|
||||
C182.0806,209.1953,176.6171,211.647,172.6595,215.6045z"/>
|
||||
</g>
|
||||
</g>
|
||||
<rect x="198.8952" y="225.1043" style="fill:#5B7FC0;" width="122.6266" height="13.8671"/>
|
||||
</g>
|
||||
<g>
|
||||
<path style="fill:#D95140;" d="M189.0874,155.7611l0.0012-0.0012c7.7751,0.0012,15.0295,4.1862,18.932,10.9234
|
||||
c1.9177,3.3159,2.9305,7.1011,2.9293,10.9378c0,5.8394-2.2733,11.3304-6.4032,15.4604c-4.1288,4.1288-9.6186,6.4032-15.458,6.4032
|
||||
c-5.8394,0-11.328-2.2733-15.458-6.4032s-6.4032-9.6186-6.4056-15.4628c0.0012-6.0249,2.454-11.4897,6.4116-15.4473
|
||||
C177.5953,158.2128,183.0601,155.7599,189.0874,155.7611z M197.0804,177.6188c0.0012-1.4042-0.3687-2.7868-1.063-3.9887
|
||||
c-1.4293-2.4684-4.0833-3.9995-6.9299-4.0019c-4.4077,0.0024-7.993,3.5877-7.993,7.993c0,2.1356,0.832,4.1431,2.3427,5.6539
|
||||
c1.5083,1.5083,3.5159,2.3403,5.6503,2.3415c2.1356,0,4.1443-0.8308,5.6539-2.3403
|
||||
C196.2508,181.7667,197.0816,179.758,197.0804,177.6188z"/>
|
||||
<path style="opacity:0.3;fill:#FFFFFF;" d="M189.0898,155.7617c7.7763,0,15.0283,4.1826,18.926,10.9151
|
||||
c1.9201,3.3135,2.9377,7.0987,2.9353,10.9462c0.0024,12.0643-9.8065,21.8636-21.8613,21.8613
|
||||
c-12.0547,0.0024-21.8636-9.8066-21.8612-21.8613c0-6.0285,2.4516-11.4921,6.4116-15.452
|
||||
C177.5977,158.2134,183.0612,155.7617,189.0898,155.7617z M197.0839,177.623c0-1.4078-0.3711-2.7892-1.0702-3.9959
|
||||
c-1.4269-2.466-4.0797-3.9983-6.924-3.9983c-4.4005-0.0048-7.9918,3.5817-7.9942,7.9942
|
||||
c0.0024,4.4077,3.5865,7.9918,7.9942,7.9942c2.2027,0,4.2018-0.8978,5.6479-2.3439
|
||||
C196.1861,181.8248,197.0839,179.8256,197.0839,177.623z"/>
|
||||
<g>
|
||||
<defs>
|
||||
<path id="SVGID_5_" d="M194.7376,183.2733c-1.4461,1.4461-3.4452,2.3439-5.6479,2.3439
|
||||
c-4.4077-0.0024-7.9918-3.5865-7.9942-7.9942c0.0024-4.4125,3.5937-7.9989,7.9942-7.9942c2.8443,0,5.497,1.5323,6.924,3.9983
|
||||
c0.6991,1.2067,1.0702,2.5881,1.0702,3.9959C197.0839,179.8256,196.1861,181.8248,194.7376,183.2733z"/>
|
||||
</defs>
|
||||
<clipPath id="SVGID_6_">
|
||||
<use xlink:href="#SVGID_5_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
<path style="clip-path:url(#SVGID_6_);fill:#FFFFFF;" d="M190.0704,170.6095c-4.4005-0.0048-7.9918,3.5817-7.9942,7.9942
|
||||
c0.0011,1.9546,0.7088,3.7452,1.8782,5.1354c-1.7447-1.4674-2.8575-3.663-2.8588-6.116c0.0024-4.4125,3.5936-7.999,7.9942-7.9942
|
||||
c2.3802-0.0001,4.616,1.0833,6.1218,2.8788C193.7885,171.3104,191.9774,170.6095,190.0704,170.6095z"/>
|
||||
<path style="opacity:0.13;clip-path:url(#SVGID_6_);fill:#020202;" d="M190.0704,170.6095
|
||||
c-4.4005-0.0048-7.9918,3.5817-7.9942,7.9942c0.0011,1.9546,0.7088,3.7452,1.8782,5.1354
|
||||
c-1.7447-1.4674-2.8575-3.663-2.8588-6.116c0.0024-4.4125,3.5936-7.999,7.9942-7.9942c2.3802-0.0001,4.616,1.0833,6.1218,2.8788
|
||||
C193.7885,171.3104,191.9774,170.6095,190.0704,170.6095z"/>
|
||||
</g>
|
||||
<g>
|
||||
<defs>
|
||||
<path id="SVGID_7_" d="M189.0898,155.7617c7.7763,0,15.0283,4.1826,18.926,10.9151c1.9201,3.3135,2.9377,7.0987,2.9353,10.9462
|
||||
c0.0024,12.0643-9.8065,21.8636-21.8613,21.8613c-12.0547,0.0024-21.8636-9.8066-21.8612-21.8613
|
||||
c0-6.0285,2.4516-11.4921,6.4116-15.452C177.5977,158.2134,183.0612,155.7617,189.0898,155.7617z M197.0839,177.623
|
||||
c0-1.4078-0.3711-2.7892-1.0702-3.9959c-1.4269-2.466-4.0797-3.9983-6.924-3.9983c-4.4005-0.0048-7.9918,3.5817-7.9942,7.9942
|
||||
c0.0024,4.4077,3.5865,7.9918,7.9942,7.9942c2.2027,0,4.2018-0.8978,5.6479-2.3439
|
||||
C196.1861,181.8248,197.0839,179.8256,197.0839,177.623z"/>
|
||||
</defs>
|
||||
<clipPath id="SVGID_8_">
|
||||
<use xlink:href="#SVGID_7_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
<path style="clip-path:url(#SVGID_8_);fill:#D95140;" d="M172.6595,161.1903c-3.96,3.96-6.4116,9.4235-6.4116,15.452
|
||||
c-0.0024,12.0547,9.8066,21.8636,21.8613,21.8613c12.0547,0.0024,21.8636-9.797,21.8613-21.8613
|
||||
c0.0024-3.8474-1.0151-7.6326-2.9353-10.9462c-3.8977-6.7324-11.1497-10.9151-18.926-10.9151
|
||||
C182.0806,154.7811,176.6171,157.2327,172.6595,161.1903z"/>
|
||||
</g>
|
||||
<rect x="198.8952" y="170.69" style="fill:#D95140;" width="122.6266" height="13.8671"/>
|
||||
</g>
|
||||
<g>
|
||||
<g>
|
||||
<path style="fill:#56A55C;" d="M189.5379,264.6147l0.0012-0.0012c7.7751,0.0012,15.0294,4.1862,18.932,10.9235
|
||||
c1.9177,3.3159,2.9305,7.1011,2.9293,10.9378c0,5.8394-2.2733,11.3304-6.4032,15.4604
|
||||
c-4.1288,4.1288-9.6186,6.4032-15.458,6.4032c-5.8394,0-11.3281-2.2733-15.458-6.4032c-4.13-4.13-6.4032-9.6186-6.4056-15.4628
|
||||
c0.0012-6.0249,2.454-11.4897,6.4116-15.4472C178.0458,267.0663,183.5105,264.6135,189.5379,264.6147z M197.5309,286.4723
|
||||
c0.0012-1.4042-0.3687-2.7868-1.063-3.9887c-1.4293-2.4684-4.0833-3.9995-6.9299-4.0019c-4.4077,0.0024-7.993,3.5877-7.993,7.993
|
||||
c0,2.1356,0.832,4.1431,2.3427,5.6538c1.5083,1.5083,3.5159,2.3403,5.6503,2.3415c2.1356,0,4.1443-0.8308,5.6539-2.3403
|
||||
C196.7013,290.6202,197.5321,288.6115,197.5309,286.4723z"/>
|
||||
<path style="opacity:0.3;fill:#FFFFFF;" d="M189.5403,264.6153c7.7763,0,15.0283,4.1826,18.926,10.9151
|
||||
c1.9201,3.3135,2.9377,7.0987,2.9353,10.9462c0.0024,12.0643-9.8065,21.8636-21.8613,21.8613
|
||||
c-12.0547,0.0024-21.8636-9.8065-21.8612-21.8613c0-6.0285,2.4516-11.492,6.4116-15.452
|
||||
C178.0482,267.0669,183.5117,264.6153,189.5403,264.6153z M197.5344,286.4765c0-1.4078-0.3711-2.7892-1.0702-3.9959
|
||||
c-1.4269-2.466-4.0797-3.9983-6.924-3.9983c-4.4005-0.0048-7.9918,3.5817-7.9942,7.9941
|
||||
c0.0024,4.4077,3.5865,7.9918,7.9942,7.9942c2.2027,0,4.2018-0.8978,5.6479-2.3439
|
||||
C196.6366,290.6783,197.5344,288.6792,197.5344,286.4765z"/>
|
||||
<g>
|
||||
<defs>
|
||||
<path id="SVGID_9_" d="M195.1881,292.1268c-1.4461,1.4461-3.4452,2.3439-5.6479,2.3439
|
||||
c-4.4077-0.0024-7.9918-3.5865-7.9942-7.9942c0.0024-4.4125,3.5937-7.9989,7.9942-7.9941c2.8443,0,5.497,1.5323,6.924,3.9983
|
||||
c0.6991,1.2067,1.0702,2.5881,1.0702,3.9959C197.5344,288.6792,196.6366,290.6783,195.1881,292.1268z"/>
|
||||
</defs>
|
||||
<clipPath id="SVGID_10_">
|
||||
<use xlink:href="#SVGID_9_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
<path style="clip-path:url(#SVGID_10_);fill:#FFFFFF;" d="M190.5209,279.463c-4.4005-0.0048-7.9918,3.5817-7.9942,7.9941
|
||||
c0.0011,1.9547,0.7088,3.7452,1.8782,5.1354c-1.7446-1.4674-2.8575-3.6631-2.8588-6.1161
|
||||
c0.0024-4.4125,3.5936-7.999,7.9942-7.9941c2.3802-0.0001,4.616,1.0833,6.1218,2.8788
|
||||
C194.239,280.164,192.4279,279.463,190.5209,279.463z"/>
|
||||
<path style="opacity:0.13;clip-path:url(#SVGID_10_);fill:#020202;" d="M190.5209,279.463
|
||||
c-4.4005-0.0048-7.9918,3.5817-7.9942,7.9941c0.0011,1.9547,0.7088,3.7452,1.8782,5.1354
|
||||
c-1.7446-1.4674-2.8575-3.6631-2.8588-6.1161c0.0024-4.4125,3.5936-7.999,7.9942-7.9941
|
||||
c2.3802-0.0001,4.616,1.0833,6.1218,2.8788C194.239,280.164,192.4279,279.463,190.5209,279.463z"/>
|
||||
</g>
|
||||
<g>
|
||||
<defs>
|
||||
<path id="SVGID_11_" d="M189.5403,264.6153c7.7763,0,15.0283,4.1826,18.926,10.9151
|
||||
c1.9201,3.3135,2.9377,7.0987,2.9353,10.9462c0.0024,12.0643-9.8065,21.8636-21.8613,21.8613
|
||||
c-12.0547,0.0024-21.8636-9.8065-21.8612-21.8613c0-6.0285,2.4516-11.492,6.4116-15.452
|
||||
C178.0482,267.0669,183.5117,264.6153,189.5403,264.6153z M197.5344,286.4765c0-1.4078-0.3711-2.7892-1.0702-3.9959
|
||||
c-1.4269-2.466-4.0797-3.9983-6.924-3.9983c-4.4005-0.0048-7.9918,3.5817-7.9942,7.9941
|
||||
c0.0024,4.4077,3.5865,7.9918,7.9942,7.9942c2.2027,0,4.2018-0.8978,5.6479-2.3439
|
||||
C196.6366,290.6783,197.5344,288.6792,197.5344,286.4765z"/>
|
||||
</defs>
|
||||
<clipPath id="SVGID_12_">
|
||||
<use xlink:href="#SVGID_11_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
<path style="clip-path:url(#SVGID_12_);fill:#56A55C;" d="M173.11,270.0439c-3.96,3.96-6.4116,9.4235-6.4116,15.452
|
||||
c-0.0024,12.0547,9.8066,21.8636,21.8613,21.8613c12.0547,0.0024,21.8636-9.797,21.8613-21.8613
|
||||
c0.0024-3.8474-1.0151-7.6326-2.9353-10.9462c-3.8977-6.7325-11.1497-10.9151-18.926-10.9151
|
||||
C182.5311,263.6346,177.0676,266.0863,173.11,270.0439z"/>
|
||||
</g>
|
||||
</g>
|
||||
<rect x="199.3456" y="279.5436" style="fill:#56A55C;" width="122.6266" height="13.8671"/>
|
||||
</g>
|
||||
<g>
|
||||
<g>
|
||||
<path style="fill:#F1BC42;" d="M189.0874,318.7208l0.0012-0.0012c7.7751,0.0012,15.0295,4.1862,18.932,10.9234
|
||||
c1.9177,3.3159,2.9305,7.1011,2.9293,10.9378c0,5.8394-2.2733,11.3305-6.4032,15.4604
|
||||
c-4.1288,4.1288-9.6186,6.4032-15.458,6.4032c-5.8394,0-11.328-2.2733-15.458-6.4032c-4.13-4.1299-6.4032-9.6186-6.4056-15.4628
|
||||
c0.0012-6.025,2.454-11.4897,6.4116-15.4472C177.5953,321.1724,183.0601,318.7196,189.0874,318.7208z M197.0804,340.5784
|
||||
c0.0012-1.4042-0.3687-2.7868-1.063-3.9887c-1.4293-2.4684-4.0833-3.9995-6.9299-4.0019c-4.4077,0.0024-7.993,3.5877-7.993,7.993
|
||||
c0,2.1356,0.832,4.1431,2.3427,5.6539c1.5083,1.5083,3.5159,2.3403,5.6503,2.3415c2.1356,0,4.1443-0.8308,5.6539-2.3403
|
||||
S197.0816,342.7176,197.0804,340.5784z"/>
|
||||
<path style="opacity:0.3;fill:#FFFFFF;" d="M189.0898,318.7214c7.7763,0,15.0283,4.1826,18.926,10.915
|
||||
c1.9201,3.3136,2.9377,7.0988,2.9353,10.9462c0.0024,12.0643-9.8065,21.8636-21.8613,21.8612
|
||||
c-12.0547,0.0024-21.8636-9.8065-21.8612-21.8612c0-6.0285,2.4516-11.4921,6.4116-15.452
|
||||
C177.5977,321.173,183.0612,318.7214,189.0898,318.7214z M197.0839,340.5826c0-1.4078-0.3711-2.7892-1.0702-3.9959
|
||||
c-1.4269-2.466-4.0797-3.9983-6.924-3.9983c-4.4005-0.0048-7.9918,3.5817-7.9942,7.9942
|
||||
c0.0024,4.4077,3.5865,7.9918,7.9942,7.9942c2.2027,0,4.2018-0.8978,5.6479-2.3439
|
||||
C196.1861,344.7844,197.0839,342.7853,197.0839,340.5826z"/>
|
||||
<g>
|
||||
<defs>
|
||||
<path id="SVGID_13_" d="M194.7376,346.2329c-1.4461,1.4461-3.4452,2.3439-5.6479,2.3439
|
||||
c-4.4077-0.0024-7.9918-3.5865-7.9942-7.9942c0.0024-4.4125,3.5937-7.999,7.9942-7.9942c2.8443,0,5.497,1.5323,6.924,3.9983
|
||||
c0.6991,1.2067,1.0702,2.5881,1.0702,3.9959C197.0839,342.7853,196.1861,344.7844,194.7376,346.2329z"/>
|
||||
</defs>
|
||||
<clipPath id="SVGID_14_">
|
||||
<use xlink:href="#SVGID_13_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
<path style="clip-path:url(#SVGID_14_);fill:#FFFFFF;" d="M190.0704,333.5691c-4.4005-0.0048-7.9918,3.5817-7.9942,7.9942
|
||||
c0.0011,1.9547,0.7088,3.7452,1.8782,5.1354c-1.7447-1.4674-2.8575-3.6631-2.8588-6.1161
|
||||
c0.0024-4.4125,3.5936-7.999,7.9942-7.9942c2.3802-0.0001,4.616,1.0834,6.1218,2.8788
|
||||
C193.7885,334.2701,191.9774,333.5691,190.0704,333.5691z"/>
|
||||
<path style="opacity:0.13;clip-path:url(#SVGID_14_);fill:#020202;" d="M190.0704,333.5691
|
||||
c-4.4005-0.0048-7.9918,3.5817-7.9942,7.9942c0.0011,1.9547,0.7088,3.7452,1.8782,5.1354
|
||||
c-1.7447-1.4674-2.8575-3.6631-2.8588-6.1161c0.0024-4.4125,3.5936-7.999,7.9942-7.9942
|
||||
c2.3802-0.0001,4.616,1.0834,6.1218,2.8788C193.7885,334.2701,191.9774,333.5691,190.0704,333.5691z"/>
|
||||
</g>
|
||||
<g>
|
||||
<defs>
|
||||
<path id="SVGID_15_" d="M189.0898,318.7214c7.7763,0,15.0283,4.1826,18.926,10.915c1.9201,3.3136,2.9377,7.0988,2.9353,10.9462
|
||||
c0.0024,12.0643-9.8065,21.8636-21.8613,21.8612c-12.0547,0.0024-21.8636-9.8065-21.8612-21.8612
|
||||
c0-6.0285,2.4516-11.4921,6.4116-15.452C177.5977,321.173,183.0612,318.7214,189.0898,318.7214z M197.0839,340.5826
|
||||
c0-1.4078-0.3711-2.7892-1.0702-3.9959c-1.4269-2.466-4.0797-3.9983-6.924-3.9983c-4.4005-0.0048-7.9918,3.5817-7.9942,7.9942
|
||||
c0.0024,4.4077,3.5865,7.9918,7.9942,7.9942c2.2027,0,4.2018-0.8978,5.6479-2.3439
|
||||
C196.1861,344.7844,197.0839,342.7853,197.0839,340.5826z"/>
|
||||
</defs>
|
||||
<clipPath id="SVGID_16_">
|
||||
<use xlink:href="#SVGID_15_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
<path style="clip-path:url(#SVGID_16_);fill:#F1BC42;" d="M172.6595,324.15c-3.96,3.96-6.4116,9.4235-6.4116,15.452
|
||||
c-0.0024,12.0547,9.8066,21.8636,21.8613,21.8612c12.0547,0.0024,21.8636-9.797,21.8613-21.8612
|
||||
c0.0024-3.8474-1.0151-7.6327-2.9353-10.9462c-3.8977-6.7324-11.1497-10.9151-18.926-10.9151
|
||||
C182.0806,317.7407,176.6171,320.1924,172.6595,324.15z"/>
|
||||
</g>
|
||||
</g>
|
||||
<rect x="198.8952" y="333.6497" style="fill:#F1BC42;" width="122.6266" height="13.8671"/>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 16 KiB |
49
_vendor/github.com/google/docsy/assets/js/anchor.js
generated
Normal file
49
_vendor/github.com/google/docsy/assets/js/anchor.js
generated
Normal file
|
@ -0,0 +1,49 @@
|
|||
/*
|
||||
* Copyright 2018 Google LLC
|
||||
|
||||
Licensed 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
|
||||
|
||||
https://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.
|
||||
*/
|
||||
|
||||
(function ($) {
|
||||
'use strict';
|
||||
|
||||
// Headers' anchor link that shows on hover
|
||||
$(function () {
|
||||
// append anchor links to headings in markdown.
|
||||
var article = document.getElementsByTagName('main')[0];
|
||||
if (!article) {
|
||||
return;
|
||||
}
|
||||
var headings = article.querySelectorAll('h1, h2, h3, h4, h5, h6');
|
||||
headings.forEach(function (heading) {
|
||||
if (heading.id) {
|
||||
var a = document.createElement('a');
|
||||
// set visibility: hidden, not display: none to avoid layout change
|
||||
a.style.visibility = 'hidden';
|
||||
// [a11y] hide this from screen readers, etc..
|
||||
a.setAttribute('aria-hidden', 'true');
|
||||
// material insert_link icon in svg format
|
||||
a.innerHTML = ' <svg xmlns="http://www.w3.org/2000/svg" fill="currentColor" width="24" height="24" viewBox="0 0 24 24"><path d="M0 0h24v24H0z" fill="none"/><path d="M3.9 12c0-1.71 1.39-3.1 3.1-3.1h4V7H7c-2.76 0-5 2.24-5 5s2.24 5 5 5h4v-1.9H7c-1.71 0-3.1-1.39-3.1-3.1zM8 13h8v-2H8v2zm9-6h-4v1.9h4c1.71 0 3.1 1.39 3.1 3.1s-1.39 3.1-3.1 3.1h-4V17h4c2.76 0 5-2.24 5-5s-2.24-5-5-5z"/></svg>';
|
||||
a.href = '#' + heading.id;
|
||||
heading.insertAdjacentElement('beforeend', a);
|
||||
heading.addEventListener('mouseenter', function () {
|
||||
a.style.visibility = 'initial';
|
||||
});
|
||||
heading.addEventListener('mouseleave', function () {
|
||||
a.style.visibility = 'hidden';
|
||||
});
|
||||
}
|
||||
});
|
||||
});
|
||||
|
||||
}(jQuery));
|
65
_vendor/github.com/google/docsy/assets/js/base.js
generated
Normal file
65
_vendor/github.com/google/docsy/assets/js/base.js
generated
Normal file
|
@ -0,0 +1,65 @@
|
|||
/*
|
||||
* Copyright 2018 Google LLC
|
||||
|
||||
Licensed 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
|
||||
|
||||
https://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.
|
||||
*/
|
||||
|
||||
(function($) {
|
||||
|
||||
'use strict';
|
||||
|
||||
$(function() {
|
||||
$('[data-toggle="tooltip"]').tooltip();
|
||||
$('[data-toggle="popover"]').popover();
|
||||
|
||||
$('.popover-dismiss').popover({
|
||||
trigger: 'focus'
|
||||
})
|
||||
});
|
||||
|
||||
|
||||
function bottomPos(element) {
|
||||
return element.offset().top + element.outerHeight();
|
||||
}
|
||||
|
||||
// Bootstrap Fixed Header
|
||||
$(function() {
|
||||
var promo = $(".js-td-cover");
|
||||
if (!promo.length) {
|
||||
return
|
||||
}
|
||||
|
||||
var promoOffset = bottomPos(promo);
|
||||
var navbarOffset = $('.js-navbar-scroll').offset().top;
|
||||
|
||||
var threshold = Math.ceil($('.js-navbar-scroll').outerHeight());
|
||||
if ((promoOffset - navbarOffset) < threshold) {
|
||||
$('.js-navbar-scroll').addClass('navbar-bg-onscroll');
|
||||
}
|
||||
|
||||
|
||||
$(window).on('scroll', function() {
|
||||
var navtop = $('.js-navbar-scroll').offset().top - $(window).scrollTop();
|
||||
var promoOffset = bottomPos($('.js-td-cover'));
|
||||
var navbarOffset = $('.js-navbar-scroll').offset().top;
|
||||
if ((promoOffset - navbarOffset) < threshold) {
|
||||
$('.js-navbar-scroll').addClass('navbar-bg-onscroll');
|
||||
} else {
|
||||
$('.js-navbar-scroll').removeClass('navbar-bg-onscroll');
|
||||
$('.js-navbar-scroll').addClass('navbar-bg-onscroll--fade');
|
||||
}
|
||||
});
|
||||
});
|
||||
|
||||
|
||||
}(jQuery));
|
86
_vendor/github.com/google/docsy/assets/js/click-to-copy.js
generated
Normal file
86
_vendor/github.com/google/docsy/assets/js/click-to-copy.js
generated
Normal file
|
@ -0,0 +1,86 @@
|
|||
let codeListings = document.querySelectorAll('.highlight > pre');
|
||||
|
||||
for (let index = 0; index < codeListings.length; index++)
|
||||
{
|
||||
const codeSample = codeListings[index].querySelector('code');
|
||||
const copyButton = document.createElement("button");
|
||||
copyButton.setAttribute('type', 'button');
|
||||
copyButton.onclick = function() { copyCode(codeSample); };
|
||||
copyButton.classList.add('fas', 'fa-copy');
|
||||
|
||||
const buttonTooltip = document.createElement('div');
|
||||
buttonTooltip.classList.add('c2c-tooltip');
|
||||
buttonTooltip.setAttribute('role', 'tooltip');
|
||||
buttonTooltip.innerHTML += 'Copy to clipboard';
|
||||
|
||||
const buttonDiv = document.createElement('div');
|
||||
buttonDiv.classList.add('click-to-copy');
|
||||
|
||||
// Use Popper to create and handle the tooltip behavior.
|
||||
|
||||
const popperInstance = Popper.createPopper(copyButton, buttonTooltip,
|
||||
{
|
||||
modifiers:
|
||||
[
|
||||
{
|
||||
name: 'offset',
|
||||
options:
|
||||
{
|
||||
offset: [0, -48],
|
||||
},
|
||||
},
|
||||
],
|
||||
});
|
||||
|
||||
copyButton.addEventListener('click', () =>
|
||||
{
|
||||
buttonTooltip.innerHTML = 'Copied!';
|
||||
});
|
||||
|
||||
copyButton.addEventListener('mouseenter', () =>
|
||||
{
|
||||
buttonTooltip.setAttribute('show-tooltip', '');
|
||||
|
||||
// Enable eventListeners when the code block is on the viewport
|
||||
|
||||
popperInstance.setOptions((options) => ({
|
||||
...options,
|
||||
modifiers:
|
||||
[
|
||||
...options.modifiers,
|
||||
{ name: 'eventListeners', enabled: true },
|
||||
],
|
||||
}));
|
||||
popperInstance.update();
|
||||
});
|
||||
|
||||
copyButton.addEventListener('mouseleave', () =>
|
||||
{
|
||||
buttonTooltip.removeAttribute('show-tooltip');
|
||||
|
||||
// Reset the message in case the button was clicked
|
||||
buttonTooltip.innerHTML = 'Copy to clipboard';
|
||||
|
||||
// Disble eventListeners when the code block is NOT on the viewport
|
||||
|
||||
popperInstance.setOptions((options) => ({
|
||||
...options,
|
||||
modifiers:
|
||||
[
|
||||
...options.modifiers,
|
||||
{ name: 'eventListeners', enabled: false },
|
||||
],
|
||||
}));
|
||||
});
|
||||
|
||||
buttonDiv.append(copyButton);
|
||||
buttonDiv.append(buttonTooltip);
|
||||
codeListings[index].insertBefore(buttonDiv, codeSample);
|
||||
|
||||
}
|
||||
|
||||
function copyCode(codeSample)
|
||||
{
|
||||
navigator.clipboard.writeText(codeSample.textContent.trim());
|
||||
}
|
||||
|
106
_vendor/github.com/google/docsy/assets/js/drawio.js
generated
Normal file
106
_vendor/github.com/google/docsy/assets/js/drawio.js
generated
Normal file
|
@ -0,0 +1,106 @@
|
|||
{{with .Site.Params.drawio}}
|
||||
{{if .enable }}
|
||||
(function () {
|
||||
var shade;
|
||||
var iframe;
|
||||
|
||||
var insertFrame = function () {
|
||||
shade = document.createElement('div');
|
||||
shade.classList.add('drawioframe');
|
||||
iframe = document.createElement('iframe');
|
||||
shade.appendChild(iframe);
|
||||
document.body.appendChild(shade);
|
||||
}
|
||||
|
||||
var closeFrame = function () {
|
||||
if (shade) {
|
||||
document.body.removeChild(shade);
|
||||
shade = undefined;
|
||||
iframe = undefined;
|
||||
}
|
||||
}
|
||||
|
||||
var imghandler = function (img, imgdata) {
|
||||
var url = {{ .drawio_server | default "https://embed.diagrams.net/" | jsonify }};
|
||||
url += '?embed=1&ui=atlas&spin=1&modified=unsavedChanges&proto=json&saveAndEdit=1&noSaveBtn=1';
|
||||
|
||||
var wrapper = document.createElement('div');
|
||||
wrapper.classList.add('drawio');
|
||||
img.parentNode.insertBefore(wrapper, img);
|
||||
wrapper.appendChild(img);
|
||||
|
||||
var btn = document.createElement('button');
|
||||
btn.classList.add('drawiobtn');
|
||||
btn.insertAdjacentHTML('beforeend', '<i class="fas fa-edit"></i>');
|
||||
wrapper.appendChild(btn);
|
||||
|
||||
btn.addEventListener('click', function (evt) {
|
||||
if (iframe) return;
|
||||
insertFrame();
|
||||
var handler = function (evt) {
|
||||
var wind = iframe.contentWindow;
|
||||
if (evt.data.length > 0 && evt.source == wind) {
|
||||
var msg = JSON.parse(evt.data);
|
||||
|
||||
if (msg.event == 'init') {
|
||||
wind.postMessage(JSON.stringify({action: 'load', xml: imgdata}), '*');
|
||||
|
||||
} else if (msg.event == 'save') {
|
||||
var fmt = imgdata.indexOf('data:image/png') == 0 ? 'xmlpng' : 'xmlsvg';
|
||||
wind.postMessage(JSON.stringify({action: 'export', format: fmt}), '*');
|
||||
|
||||
} else if (msg.event == 'export') {
|
||||
const fn = img.src.replace(/^.*?([^/]+)$/, '$1');
|
||||
const dl = document.createElement('a');
|
||||
dl.setAttribute('href', msg.data);
|
||||
dl.setAttribute('download', fn);
|
||||
document.body.appendChild(dl);
|
||||
dl.click();
|
||||
dl.parentNode.removeChild(dl);
|
||||
}
|
||||
|
||||
if (msg.event == 'exit' || msg.event == 'export') {
|
||||
window.removeEventListener('message', handler);
|
||||
closeFrame();
|
||||
}
|
||||
}
|
||||
};
|
||||
|
||||
window.addEventListener('message', handler);
|
||||
iframe.setAttribute('src', url);
|
||||
});
|
||||
};
|
||||
|
||||
|
||||
document.addEventListener('DOMContentLoaded', function () {
|
||||
// find all the png and svg images that may have embedded xml diagrams
|
||||
for (const el of document.getElementsByTagName('img')) {
|
||||
const img = el;
|
||||
const src = img.getAttribute('src');
|
||||
if (!src.endsWith('.svg') && !src.endsWith('.png')) {
|
||||
continue;
|
||||
}
|
||||
|
||||
const xhr = new XMLHttpRequest();
|
||||
xhr.responseType = 'blob';
|
||||
xhr.open("GET", src);
|
||||
xhr.addEventListener("load", function () {
|
||||
const fr = new FileReader();
|
||||
fr.addEventListener('load', function () {
|
||||
if (fr.result.indexOf('mxfile') != -1) {
|
||||
const fr = new FileReader();
|
||||
fr.addEventListener('load', function () {
|
||||
const imgdata = fr.result;
|
||||
imghandler(img, imgdata);
|
||||
});
|
||||
fr.readAsDataURL(xhr.response);
|
||||
}
|
||||
});
|
||||
fr.readAsBinaryString(xhr.response);
|
||||
});
|
||||
xhr.send();
|
||||
};
|
||||
});
|
||||
}());
|
||||
{{end}}
|
||||
{{end}}
|
19
_vendor/github.com/google/docsy/assets/js/markmap.js
generated
Normal file
19
_vendor/github.com/google/docsy/assets/js/markmap.js
generated
Normal file
|
@ -0,0 +1,19 @@
|
|||
{{ with .Site.Params.markmap }}
|
||||
{{ if .enable }}
|
||||
|
||||
|
||||
(function($) {
|
||||
var needMarkmap = false;
|
||||
$('.language-markmap').parent().replaceWith(function() {
|
||||
needMarkmap = true;
|
||||
return $('<div class="markmap">').text($(this).text());
|
||||
});
|
||||
|
||||
const { markmap } = window;
|
||||
if(needMarkmap) {
|
||||
markmap.autoLoader.renderAll();
|
||||
}
|
||||
|
||||
})(jQuery);
|
||||
{{ end }}
|
||||
{{ end }}
|
38
_vendor/github.com/google/docsy/assets/js/mermaid.js
generated
Normal file
38
_vendor/github.com/google/docsy/assets/js/mermaid.js
generated
Normal file
|
@ -0,0 +1,38 @@
|
|||
{{ with .Site.Params.mermaid }}
|
||||
{{ if .enable }}
|
||||
(function($) {
|
||||
var needMermaid = false;
|
||||
$('.language-mermaid').parent().replaceWith(function() {
|
||||
needMermaid = true;
|
||||
return $('<pre class="mermaid">').text($(this).text());
|
||||
});
|
||||
|
||||
if (!needMermaid) {
|
||||
mermaid.initialize({startOnLoad: false});
|
||||
return;
|
||||
}
|
||||
|
||||
var params = {{ . | jsonify | safeJS }};
|
||||
|
||||
// site params are stored with lowercase keys; lookup correct casing
|
||||
// from Mermaid default config.
|
||||
var norm = function(defaultConfig, params) {
|
||||
var result = {};
|
||||
for (const key in defaultConfig) {
|
||||
const keyLower = key.toLowerCase();
|
||||
if (defaultConfig.hasOwnProperty(key) && params.hasOwnProperty(keyLower)) {
|
||||
if (typeof defaultConfig[key] === "object") {
|
||||
result[key] = norm(defaultConfig[key], params[keyLower]);
|
||||
} else {
|
||||
result[key] = params[keyLower];
|
||||
}
|
||||
}
|
||||
}
|
||||
return result;
|
||||
};
|
||||
var settings = norm(mermaid.mermaidAPI.defaultConfig, params);
|
||||
settings.startOnLoad = true;
|
||||
mermaid.initialize(settings);
|
||||
})(jQuery);
|
||||
{{ end }}
|
||||
{{ end }}
|
193
_vendor/github.com/google/docsy/assets/js/offline-search.js
generated
Normal file
193
_vendor/github.com/google/docsy/assets/js/offline-search.js
generated
Normal file
|
@ -0,0 +1,193 @@
|
|||
// Adapted from code by Matt Walters https://www.mattwalters.net/posts/2018-03-28-hugo-and-lunr/
|
||||
|
||||
(function ($) {
|
||||
'use strict';
|
||||
|
||||
$(document).ready(function () {
|
||||
const $searchInput = $('.td-search input');
|
||||
|
||||
//
|
||||
// Options for popover
|
||||
//
|
||||
|
||||
$searchInput.data('html', true);
|
||||
$searchInput.data('placement', 'bottom');
|
||||
$searchInput.data(
|
||||
'template',
|
||||
'<div class="td-offline-search-results popover" role="tooltip"><div class="arrow"></div><h3 class="popover-header"></h3><div class="popover-body"></div></div>'
|
||||
);
|
||||
|
||||
//
|
||||
// Register handler
|
||||
//
|
||||
|
||||
$searchInput.on('change', (event) => {
|
||||
render($(event.target));
|
||||
|
||||
// Hide keyboard on mobile browser
|
||||
$searchInput.blur();
|
||||
});
|
||||
|
||||
// Prevent reloading page by enter key on sidebar search.
|
||||
$searchInput.closest('form').on('submit', () => {
|
||||
return false;
|
||||
});
|
||||
|
||||
//
|
||||
// Lunr
|
||||
//
|
||||
|
||||
let idx = null; // Lunr index
|
||||
const resultDetails = new Map(); // Will hold the data for the search results (titles and summaries)
|
||||
|
||||
// Set up for an Ajax call to request the JSON data file that is created by Hugo's build process
|
||||
$.ajax($searchInput.data('offline-search-index-json-src')).then(
|
||||
(data) => {
|
||||
idx = lunr(function () {
|
||||
this.ref('ref');
|
||||
|
||||
// If you added more searchable fields to the search index, list them here.
|
||||
// Here you can specify searchable fields to the search index - e.g. individual toxonomies for you project
|
||||
// With "boost" you can add weighting for specific (default weighting without boost: 1)
|
||||
this.field('title', { boost: 5 });
|
||||
this.field('categories', { boost: 3 });
|
||||
this.field('tags', { boost: 3 });
|
||||
// this.field('projects', { boost: 3 }); // example for an individual toxonomy called projects
|
||||
this.field('description', { boost: 2 });
|
||||
this.field('body');
|
||||
|
||||
data.forEach((doc) => {
|
||||
this.add(doc);
|
||||
|
||||
resultDetails.set(doc.ref, {
|
||||
title: doc.title,
|
||||
excerpt: doc.excerpt,
|
||||
});
|
||||
});
|
||||
});
|
||||
|
||||
$searchInput.trigger('change');
|
||||
}
|
||||
);
|
||||
|
||||
const render = ($targetSearchInput) => {
|
||||
// Dispose the previous result
|
||||
$targetSearchInput.popover('dispose');
|
||||
|
||||
//
|
||||
// Search
|
||||
//
|
||||
|
||||
if (idx === null) {
|
||||
return;
|
||||
}
|
||||
|
||||
const searchQuery = $targetSearchInput.val();
|
||||
if (searchQuery === '') {
|
||||
return;
|
||||
}
|
||||
|
||||
const results = idx
|
||||
.query((q) => {
|
||||
const tokens = lunr.tokenizer(searchQuery.toLowerCase());
|
||||
tokens.forEach((token) => {
|
||||
const queryString = token.toString();
|
||||
q.term(queryString, {
|
||||
boost: 100,
|
||||
});
|
||||
q.term(queryString, {
|
||||
wildcard:
|
||||
lunr.Query.wildcard.LEADING |
|
||||
lunr.Query.wildcard.TRAILING,
|
||||
boost: 10,
|
||||
});
|
||||
q.term(queryString, {
|
||||
editDistance: 2,
|
||||
});
|
||||
});
|
||||
})
|
||||
.slice(
|
||||
0,
|
||||
$targetSearchInput.data('offline-search-max-results')
|
||||
);
|
||||
|
||||
//
|
||||
// Make result html
|
||||
//
|
||||
|
||||
const $html = $('<div>');
|
||||
|
||||
$html.append(
|
||||
$('<div>')
|
||||
.css({
|
||||
display: 'flex',
|
||||
justifyContent: 'space-between',
|
||||
marginBottom: '1em',
|
||||
})
|
||||
.append(
|
||||
$('<span>')
|
||||
.text('Search results')
|
||||
.css({ fontWeight: 'bold' })
|
||||
)
|
||||
.append(
|
||||
$('<span>')
|
||||
.addClass('td-offline-search-results__close-button')
|
||||
)
|
||||
);
|
||||
|
||||
const $searchResultBody = $('<div>').css({
|
||||
maxHeight: `calc(100vh - ${
|
||||
$targetSearchInput.offset().top -
|
||||
$(window).scrollTop() +
|
||||
180
|
||||
}px)`,
|
||||
overflowY: 'auto',
|
||||
});
|
||||
$html.append($searchResultBody);
|
||||
|
||||
if (results.length === 0) {
|
||||
$searchResultBody.append(
|
||||
$('<p>').text(`No results found for query "${searchQuery}"`)
|
||||
);
|
||||
} else {
|
||||
results.forEach((r) => {
|
||||
const doc = resultDetails.get(r.ref);
|
||||
const href =
|
||||
$searchInput.data('offline-search-base-href') +
|
||||
r.ref.replace(/^\//, '');
|
||||
|
||||
const $entry = $('<div>').addClass('mt-4');
|
||||
|
||||
$entry.append(
|
||||
$('<small>').addClass('d-block text-muted').text(r.ref)
|
||||
);
|
||||
|
||||
$entry.append(
|
||||
$('<a>')
|
||||
.addClass('d-block')
|
||||
.css({
|
||||
fontSize: '1.2rem',
|
||||
})
|
||||
.attr('href', href)
|
||||
.text(doc.title)
|
||||
);
|
||||
|
||||
$entry.append($('<p>').text(doc.excerpt));
|
||||
|
||||
$searchResultBody.append($entry);
|
||||
});
|
||||
}
|
||||
|
||||
$targetSearchInput.on('shown.bs.popover', () => {
|
||||
$('.td-offline-search-results__close-button').on('click', () => {
|
||||
$targetSearchInput.val('');
|
||||
$targetSearchInput.trigger('change');
|
||||
});
|
||||
});
|
||||
|
||||
$targetSearchInput
|
||||
.data('content', $html[0].outerHTML)
|
||||
.popover('show');
|
||||
};
|
||||
});
|
||||
})(jQuery);
|
71
_vendor/github.com/google/docsy/assets/js/plantuml.js
generated
Normal file
71
_vendor/github.com/google/docsy/assets/js/plantuml.js
generated
Normal file
File diff suppressed because one or more lines are too long
43
_vendor/github.com/google/docsy/assets/js/search.js
generated
Normal file
43
_vendor/github.com/google/docsy/assets/js/search.js
generated
Normal file
|
@ -0,0 +1,43 @@
|
|||
/*
|
||||
Copyright 2018 Google LLC
|
||||
|
||||
Licensed 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
|
||||
|
||||
https://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.
|
||||
*/
|
||||
|
||||
(function($) {
|
||||
|
||||
'use strict';
|
||||
|
||||
var Search = {
|
||||
init: function() {
|
||||
$(document).ready(function() {
|
||||
$(document).on('keypress', '.td-search input', function(e) {
|
||||
if (e.keyCode !== 13) {
|
||||
return
|
||||
}
|
||||
|
||||
var query = $(this).val();
|
||||
var searchPage = "{{ "search/" | absURL }}?q=" + query;
|
||||
document.location = searchPage;
|
||||
|
||||
return false;
|
||||
});
|
||||
|
||||
});
|
||||
},
|
||||
};
|
||||
|
||||
Search.init();
|
||||
|
||||
|
||||
}(jQuery));
|
18
_vendor/github.com/google/docsy/assets/json/offline-search-index.json
generated
Normal file
18
_vendor/github.com/google/docsy/assets/json/offline-search-index.json
generated
Normal file
|
@ -0,0 +1,18 @@
|
|||
{{- $.Scratch.Add "offline-search-index" slice -}}
|
||||
{{- range where .Site.AllPages ".Params.exclude_search" "!=" true -}}
|
||||
{{- /* We have to apply `htmlUnescape` again after `truncate` because `truncate` applies `html.EscapeString` if the argument is not HTML. */ -}}
|
||||
{{- /* Individual taxonomies can be added in the next line by add '"taxonomy-name" (.Params.taxonomy-name | default "")' to the dict (as seen for categories and tags). */ -}}
|
||||
{{- $.Scratch.Add
|
||||
"offline-search-index"
|
||||
(dict
|
||||
"ref" .RelPermalink
|
||||
"title" .Title
|
||||
"categories" (.Params.categories | default "")
|
||||
"tags" (.Params.tags | default "")
|
||||
"description" (.Description | default "")
|
||||
"body" (.Plain | htmlUnescape)
|
||||
"excerpt" ((.Description | default .Plain) | htmlUnescape | truncate (.Site.Params.offlineSearchSummaryLength | default 70) | htmlUnescape)
|
||||
)
|
||||
-}}
|
||||
{{- end -}}
|
||||
{{- $.Scratch.Get "offline-search-index" | jsonify -}}
|
20
_vendor/github.com/google/docsy/assets/scss/_alerts.scss
generated
Normal file
20
_vendor/github.com/google/docsy/assets/scss/_alerts.scss
generated
Normal file
|
@ -0,0 +1,20 @@
|
|||
// Style alert boxes.
|
||||
|
||||
.alert {
|
||||
font-weight: $font-weight-medium;
|
||||
background: $white;
|
||||
color: inherit;
|
||||
border-radius: 0;
|
||||
|
||||
@each $color, $value in $theme-colors {
|
||||
&-#{$color} {
|
||||
& .alert-heading {
|
||||
color: $value;
|
||||
}
|
||||
|
||||
border-style: solid;
|
||||
border-color: $value;
|
||||
border-width: 0 0 0 4px;
|
||||
}
|
||||
}
|
||||
}
|
14
_vendor/github.com/google/docsy/assets/scss/_blog.scss
generated
Normal file
14
_vendor/github.com/google/docsy/assets/scss/_blog.scss
generated
Normal file
|
@ -0,0 +1,14 @@
|
|||
.td-blog {
|
||||
.td-rss-button {
|
||||
@extend .btn;
|
||||
@extend .btn-lg;
|
||||
@extend .-bg-orange;
|
||||
|
||||
position: absolute;
|
||||
right: 1rem;
|
||||
z-index: 22;
|
||||
|
||||
display: none;
|
||||
@extend .d-lg-block;
|
||||
}
|
||||
}
|
127
_vendor/github.com/google/docsy/assets/scss/_boxes.scss
generated
Normal file
127
_vendor/github.com/google/docsy/assets/scss/_boxes.scss
generated
Normal file
|
@ -0,0 +1,127 @@
|
|||
// Boxes on the home page and similar.
|
||||
.td-box {}
|
||||
|
||||
// box-variant creates the main style for a colored section used on the site.
|
||||
@mixin box-variant($parent, $color-name, $color-value) {
|
||||
$text-color: color-yiq($color-value);
|
||||
$link-color: mix($blue, $text-color, lightness($color-value));
|
||||
$link-hover-color: rgba($link-color, 0.5) !default;
|
||||
|
||||
#{$parent} {
|
||||
&--#{$color-name} {
|
||||
color: $text-color;
|
||||
background-color: #{$color-value};
|
||||
|
||||
.td-arrow-down {
|
||||
&::before {
|
||||
left: 50%;
|
||||
margin-left: -30px;
|
||||
bottom: -25px;
|
||||
border: {
|
||||
style: solid;
|
||||
width: 25px 30px 0 30px;
|
||||
color: #{$color-value} transparent transparent transparent;
|
||||
};
|
||||
z-index: 3;
|
||||
position: absolute;
|
||||
content: "";
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
// Improve contrast for the links in paragraphs.
|
||||
@include link-variant("#{$parent}--#{$color-name} p > a", $link-color, $link-hover-color, false);
|
||||
|
||||
@if $enable-gradients {
|
||||
@include bg-gradient-variant("#{$parent}--1#{$color-name}#{$parent}--gradient", $color-value, true);
|
||||
}
|
||||
}
|
||||
|
||||
// Common min-height modifiers used for boxes.
|
||||
@mixin td-box-height-modifiers($parent) {
|
||||
#{$parent} {
|
||||
&--height-auto {}
|
||||
|
||||
&--height-min {
|
||||
min-height: 300px;
|
||||
}
|
||||
|
||||
&--height-med {
|
||||
min-height: 400px;
|
||||
}
|
||||
|
||||
&--height-max {
|
||||
min-height: 500px;
|
||||
}
|
||||
|
||||
&--height-full {
|
||||
min-height: 100vh;
|
||||
}
|
||||
|
||||
@include media-breakpoint-up(md) {
|
||||
&--height-min {
|
||||
min-height: 450px;
|
||||
}
|
||||
|
||||
&--height-med {
|
||||
min-height: 500px;
|
||||
}
|
||||
|
||||
&--height-max {
|
||||
min-height: 650px;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@include td-box-height-modifiers(".td-box");
|
||||
|
||||
// Styling for section boxes
|
||||
.td-box {
|
||||
.row.section {
|
||||
padding-left: 5vw;
|
||||
padding-right: 5vw;
|
||||
flex-direction: column;
|
||||
|
||||
> table {
|
||||
@extend .table-striped;
|
||||
|
||||
@extend .table-responsive;
|
||||
|
||||
@extend .table;
|
||||
}
|
||||
}
|
||||
|
||||
.row {
|
||||
padding-left: 5vw;
|
||||
padding-right: 5vw;
|
||||
flex-direction: row;
|
||||
}
|
||||
}
|
||||
// Styling for community page link boxes
|
||||
|
||||
.td-box.linkbox {
|
||||
padding: 5vh 5vw;
|
||||
}
|
||||
|
||||
// This allows "painting by numbers"
|
||||
@for $i from 1 through length($td-box-colors) {
|
||||
$c: nth($td-box-colors, $i);
|
||||
$name: $i - 1;
|
||||
|
||||
@include box-variant(".td-box", $name, $c);
|
||||
}
|
||||
|
||||
// Same as above with all the theme color names.
|
||||
@each $color, $value in $colors {
|
||||
@include box-variant(".td-box", $color, $value);
|
||||
}
|
||||
|
||||
@each $color, $value in $theme-colors {
|
||||
@include box-variant(".td-box", $color, $value);
|
||||
}
|
||||
|
||||
@each $color, $value in $grays {
|
||||
@include box-variant(".td-box", $color, $value);
|
||||
}
|
11
_vendor/github.com/google/docsy/assets/scss/_breadcrumb.scss
generated
Normal file
11
_vendor/github.com/google/docsy/assets/scss/_breadcrumb.scss
generated
Normal file
|
@ -0,0 +1,11 @@
|
|||
// Breadcrumb
|
||||
|
||||
.td-breadcrumbs {
|
||||
@media print {display: none !important; }
|
||||
|
||||
.breadcrumb {
|
||||
background: inherit;
|
||||
padding-left: 0;
|
||||
padding-top: 0;
|
||||
}
|
||||
}
|
15
_vendor/github.com/google/docsy/assets/scss/_buttons.scss
generated
Normal file
15
_vendor/github.com/google/docsy/assets/scss/_buttons.scss
generated
Normal file
|
@ -0,0 +1,15 @@
|
|||
// Buttons
|
||||
|
||||
@if $enable-rounded {
|
||||
.btn {
|
||||
border-radius: 1rem;
|
||||
|
||||
&-lg {
|
||||
border-radius: 2rem;
|
||||
}
|
||||
|
||||
&-sm {
|
||||
border-radius: 1rem;
|
||||
}
|
||||
}
|
||||
}
|
101
_vendor/github.com/google/docsy/assets/scss/_code.scss
generated
Normal file
101
_vendor/github.com/google/docsy/assets/scss/_code.scss
generated
Normal file
|
@ -0,0 +1,101 @@
|
|||
// Code formatting.
|
||||
|
||||
.td-content {
|
||||
// Highlighted code.
|
||||
.highlight {
|
||||
@extend .card;
|
||||
|
||||
margin: 2rem 0;
|
||||
padding: 0;
|
||||
position: relative;
|
||||
|
||||
.click-to-copy {
|
||||
display: block;
|
||||
text-align: right;
|
||||
height: 1ex;
|
||||
}
|
||||
|
||||
pre {
|
||||
margin: 0;
|
||||
padding: 1rem;
|
||||
|
||||
// Default click-to-copy button
|
||||
|
||||
button {
|
||||
position: absolute;
|
||||
color: $gray-400;
|
||||
border-radius: 3px;
|
||||
border-width: 0;
|
||||
background-color: inherit;
|
||||
box-shadow: 1px 1px $gray-400;
|
||||
right: 8px;
|
||||
top: 6px;
|
||||
|
||||
&:hover {
|
||||
color: $dark;
|
||||
background-color: $gray-400;
|
||||
}
|
||||
&:active {
|
||||
color: $dark;
|
||||
background-color: $gray-400;
|
||||
transform: translateY(2px);
|
||||
}
|
||||
}
|
||||
|
||||
.c2c-tooltip {
|
||||
background: $dark;
|
||||
color: $white;
|
||||
padding: 2px 4px;
|
||||
border-radius: 3px;
|
||||
display: block;
|
||||
visibility: hidden;
|
||||
opacity: 0;
|
||||
transition: visibility 0s, opacity 0.5s linear;
|
||||
}
|
||||
|
||||
.c2c-tooltip[show-tooltip] {
|
||||
visibility: visible;
|
||||
opacity: 1;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
// Inline code
|
||||
p code, li > code, table code {
|
||||
color: inherit;
|
||||
padding: 0.2em 0.4em;
|
||||
margin: 0;
|
||||
font-size: 85%;
|
||||
word-break: normal;
|
||||
background-color: rgba($black, 0.05);
|
||||
border-radius: $border-radius;
|
||||
|
||||
br {
|
||||
display: none;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
// Code blocks
|
||||
pre {
|
||||
word-wrap: normal;
|
||||
background-color: $gray-100;
|
||||
padding: $spacer;
|
||||
|
||||
|
||||
> code {
|
||||
background-color: inherit !important;
|
||||
padding: 0;
|
||||
margin: 0;
|
||||
font-size: 100%;
|
||||
word-break: normal;
|
||||
white-space: pre;
|
||||
border: 0;
|
||||
}
|
||||
}
|
||||
|
||||
pre.mermaid {
|
||||
background-color: inherit;
|
||||
font-size: 0;
|
||||
}
|
||||
}
|
41
_vendor/github.com/google/docsy/assets/scss/_colors.scss
generated
Normal file
41
_vendor/github.com/google/docsy/assets/scss/_colors.scss
generated
Normal file
|
@ -0,0 +1,41 @@
|
|||
// Add some local palette classes so you can do -bg-warning -text-warning etc. Even -bg-1 if you want to paint by numbers.
|
||||
@mixin palette-variant($color-name, $color-value) {
|
||||
$text-color: color-yiq($color-value);
|
||||
$link-color: mix($blue, $text-color, lightness($color-value));
|
||||
|
||||
$link-hover-color: rgba($link-color, .5) !default;
|
||||
|
||||
.-bg-#{$color-name} {
|
||||
color: $text-color;
|
||||
background-color: $color-value;
|
||||
}
|
||||
|
||||
// Make links in paragraphs stand out more.
|
||||
@include link-variant(".-bg-#{$color-name} p > a", $link-color, $link-hover-color, false);
|
||||
|
||||
|
||||
.-text-#{$color-name} {
|
||||
color: $color-value;
|
||||
}
|
||||
}
|
||||
|
||||
@each $color, $value in $colors {
|
||||
@include palette-variant($color, $value);
|
||||
}
|
||||
|
||||
@each $color, $value in $theme-colors {
|
||||
@include palette-variant($color, $value);
|
||||
}
|
||||
|
||||
@each $color, $value in $grays {
|
||||
@include palette-variant($color, $value);
|
||||
}
|
||||
|
||||
// This allows "painting by numbers", i.e. picking colors by a shortcode Ordinal.
|
||||
@for $i from 1 through length($td-box-colors) {
|
||||
$value: nth($td-box-colors, $i);
|
||||
$name: $i - 1;
|
||||
$text-color: color-yiq($value);
|
||||
|
||||
@include palette-variant($name, $value);
|
||||
}
|
82
_vendor/github.com/google/docsy/assets/scss/_content.scss
generated
Normal file
82
_vendor/github.com/google/docsy/assets/scss/_content.scss
generated
Normal file
|
@ -0,0 +1,82 @@
|
|||
//
|
||||
// Style Markdown content
|
||||
//
|
||||
|
||||
.td-content {
|
||||
order: 1;
|
||||
|
||||
p, li, td {
|
||||
font-weight: $font-weight-body-text;
|
||||
}
|
||||
|
||||
> h1 {
|
||||
font-weight: $font-weight-bold;
|
||||
margin-bottom: 1rem;
|
||||
}
|
||||
|
||||
> h2 {
|
||||
margin-bottom: 1rem;
|
||||
}
|
||||
|
||||
> h2:not(:first-child) {
|
||||
margin-top: 3rem;
|
||||
}
|
||||
|
||||
> h2 + h3 {
|
||||
margin-top: 1rem;
|
||||
}
|
||||
|
||||
> h3, > h4, > h5, > h6 {
|
||||
margin-bottom: 1rem;
|
||||
margin-top: 2rem;
|
||||
}
|
||||
|
||||
img {
|
||||
@extend .img-fluid;
|
||||
}
|
||||
|
||||
table {
|
||||
@extend .table-striped;
|
||||
|
||||
@extend .table-responsive;
|
||||
|
||||
@extend .table;
|
||||
}
|
||||
|
||||
blockquote {
|
||||
padding: 0 0 0 1rem;
|
||||
margin-bottom: $spacer;
|
||||
color: $gray-600;
|
||||
border-left: 6px solid $secondary;
|
||||
}
|
||||
|
||||
ul li, ol li {
|
||||
margin-bottom: .25rem;
|
||||
}
|
||||
|
||||
strong {
|
||||
font-weight: $font-weight-bold;
|
||||
}
|
||||
|
||||
> pre, > .highlight, > .lead, > h1, > h2, > ul, > ol, > p, > blockquote, > dl dd, .footnotes, > .alert {
|
||||
@extend .td-max-width-on-larger-screens;
|
||||
}
|
||||
|
||||
.alert:not(:first-child) {
|
||||
margin-top: 2 * $spacer;
|
||||
margin-bottom: 2 * $spacer;
|
||||
}
|
||||
|
||||
.lead {
|
||||
margin-bottom: 1.5rem;
|
||||
}
|
||||
}
|
||||
|
||||
.td-title {
|
||||
margin-top: 1rem;
|
||||
margin-bottom: .5rem;
|
||||
|
||||
@include media-breakpoint-up(sm) {
|
||||
font-size: 3rem;
|
||||
}
|
||||
}
|
40
_vendor/github.com/google/docsy/assets/scss/_drawio.scss
generated
Normal file
40
_vendor/github.com/google/docsy/assets/scss/_drawio.scss
generated
Normal file
|
@ -0,0 +1,40 @@
|
|||
div.drawio {
|
||||
display: inline-block;
|
||||
position: relative;
|
||||
|
||||
button {
|
||||
position: absolute;
|
||||
font-size: 0.8em;
|
||||
bottom: 5px;
|
||||
right: 5px;
|
||||
background-color: rgba($secondary, .8);
|
||||
color: $primary-light;
|
||||
padding: 0.4em 0.5em;
|
||||
display: none;
|
||||
}
|
||||
|
||||
&:hover button {
|
||||
display: inline;
|
||||
}
|
||||
}
|
||||
|
||||
div.drawioframe {
|
||||
position: fixed;
|
||||
height: 100%;
|
||||
width: 100%;
|
||||
top: 0;
|
||||
left: 0px;
|
||||
z-index: 1000;
|
||||
background: #000b;
|
||||
border: 0;
|
||||
|
||||
iframe {
|
||||
position: absolute;
|
||||
height: 90%;
|
||||
width: 90%;
|
||||
top: 5%;
|
||||
left: 5%;
|
||||
z-index: 1010;
|
||||
}
|
||||
}
|
||||
|
32
_vendor/github.com/google/docsy/assets/scss/_main-container.scss
generated
Normal file
32
_vendor/github.com/google/docsy/assets/scss/_main-container.scss
generated
Normal file
|
@ -0,0 +1,32 @@
|
|||
// The outer page container i.e. common styles for any page.
|
||||
.td-outer {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
height: 100vh;
|
||||
}
|
||||
|
||||
// The outer page container for the default base template.
|
||||
.td-default {
|
||||
main {
|
||||
> section:first-of-type {
|
||||
@include media-breakpoint-up(md) {
|
||||
padding-top: 8rem;
|
||||
}
|
||||
}
|
||||
|
||||
section {
|
||||
@extend .td-block-padding;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.td-main {
|
||||
flex-grow: 1;
|
||||
}
|
||||
|
||||
.td-404 main,
|
||||
.td-main main {
|
||||
padding-top: 1.5rem;
|
||||
padding-bottom: 2rem;
|
||||
@include media-breakpoint-up(md) { padding-top: 5.5rem; }
|
||||
}
|
205
_vendor/github.com/google/docsy/assets/scss/_nav.scss
generated
Normal file
205
_vendor/github.com/google/docsy/assets/scss/_nav.scss
generated
Normal file
|
@ -0,0 +1,205 @@
|
|||
//
|
||||
// Main navbar
|
||||
//
|
||||
|
||||
.td-navbar-cover {
|
||||
background: $primary;
|
||||
|
||||
@include media-breakpoint-up(md) {
|
||||
background: transparent !important;
|
||||
|
||||
.nav-link {
|
||||
text-shadow: 1px 1px 2px $dark;
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
&.navbar-bg-onscroll .nav-link {
|
||||
text-shadow: none;
|
||||
}
|
||||
}
|
||||
|
||||
.navbar-bg-onscroll {
|
||||
background: $primary !important;
|
||||
opacity: inherit;
|
||||
}
|
||||
|
||||
.td-navbar {
|
||||
background: $primary;
|
||||
min-height: 4rem;
|
||||
margin: 0;
|
||||
z-index: 32;
|
||||
|
||||
@include media-breakpoint-up(md) {
|
||||
position: fixed;
|
||||
top: 0;
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
.navbar-brand {
|
||||
text-transform: none;
|
||||
text-align: middle;
|
||||
|
||||
&__name {
|
||||
font-weight: $font-weight-bold;
|
||||
}
|
||||
|
||||
svg {
|
||||
display: inline-block;
|
||||
margin: 0 10px;
|
||||
height: 30px;
|
||||
}
|
||||
}
|
||||
|
||||
.nav-link {
|
||||
text-transform: none;
|
||||
font-weight: $font-weight-bold;
|
||||
}
|
||||
|
||||
// For .td-search__input styling, see _search.scss
|
||||
|
||||
.dropdown {
|
||||
min-width: 100px;
|
||||
}
|
||||
|
||||
@include media-breakpoint-down(md) {
|
||||
padding-right: .5rem;
|
||||
padding-left: .75rem;
|
||||
|
||||
.td-navbar-nav-scroll {
|
||||
max-width: 100%;
|
||||
height: 2.5rem;
|
||||
margin-top: .25rem;
|
||||
overflow: hidden;
|
||||
font-size: .875rem;
|
||||
|
||||
.nav-link {
|
||||
padding-right: .25rem;
|
||||
padding-left: 0;
|
||||
}
|
||||
|
||||
.navbar-nav {
|
||||
padding-bottom: 2rem;
|
||||
overflow-x: auto;
|
||||
white-space: nowrap;
|
||||
-webkit-overflow-scrolling: touch;
|
||||
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
// Icons
|
||||
#main_navbar {
|
||||
li i {
|
||||
padding-right: 0.5em;
|
||||
|
||||
&:before {
|
||||
display: inline-block;
|
||||
text-align: center;
|
||||
min-width: 1em;
|
||||
}
|
||||
}
|
||||
.alert {
|
||||
background-color: inherit;
|
||||
padding:0;
|
||||
color: $secondary;
|
||||
border: 0;
|
||||
font-weight: inherit;
|
||||
|
||||
&:before {
|
||||
display: inline-block;
|
||||
font-style: normal;
|
||||
font-variant: normal;
|
||||
text-rendering: auto;
|
||||
-webkit-font-smoothing: antialiased;
|
||||
font-family: $font-awesome-font-name;
|
||||
font-weight: 900;
|
||||
content: "\f0d9";
|
||||
padding-left: 0.5em;
|
||||
padding-right: 0.5em;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
// Foldable sidebar menu
|
||||
nav.foldable-nav {
|
||||
|
||||
&#td-section-nav {
|
||||
position: relative;
|
||||
}
|
||||
|
||||
&#td-section-nav label {
|
||||
margin-bottom: 0;
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
.td-sidebar-nav__section, .with-child ul {
|
||||
list-style: none;
|
||||
padding: 0;
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
.ul-1 > li {
|
||||
padding-left: 1.5em;
|
||||
}
|
||||
|
||||
ul.foldable {
|
||||
display: none;
|
||||
}
|
||||
|
||||
input:checked ~ ul.foldable {
|
||||
display: block;
|
||||
}
|
||||
|
||||
input[type=checkbox] { display: none; }
|
||||
|
||||
.with-child, .without-child {
|
||||
position: relative;
|
||||
padding-left: 1.5em;
|
||||
}
|
||||
|
||||
.ul-1 .with-child > label:before {
|
||||
display: inline-block;
|
||||
font-style: normal;
|
||||
font-variant: normal;
|
||||
text-rendering: auto;
|
||||
-webkit-font-smoothing: antialiased;
|
||||
font-family: $font-awesome-font-name; font-weight: 900; content: "\f0da";
|
||||
position: absolute;
|
||||
left: 0.1em;
|
||||
padding-left: 0.4em;
|
||||
padding-right: 0.4em;
|
||||
font-size: 1em;
|
||||
color: $gray-900;
|
||||
transition: all 0.5s;
|
||||
&:hover{
|
||||
transform: rotate(90deg);
|
||||
}
|
||||
}
|
||||
|
||||
.ul-1 .with-child > input:checked ~ label:before {
|
||||
color: $primary;
|
||||
transform: rotate(90deg);
|
||||
transition: transform 0.5s;
|
||||
}
|
||||
|
||||
.with-child ul { margin-top: 0.1em; }
|
||||
|
||||
}
|
||||
|
||||
@media (hover: hover) and (pointer: fine) {
|
||||
|
||||
nav.foldable-nav {
|
||||
|
||||
.ul-1 .with-child > label:hover:before {
|
||||
color: $primary;
|
||||
transition: color 0.3s;
|
||||
}
|
||||
|
||||
.ul-1 .with-child > input:checked ~ label:hover:before {
|
||||
color: $primary;
|
||||
transition: color 0.3s;
|
||||
}
|
||||
}
|
||||
}
|
18
_vendor/github.com/google/docsy/assets/scss/_pageinfo.scss
generated
Normal file
18
_vendor/github.com/google/docsy/assets/scss/_pageinfo.scss
generated
Normal file
|
@ -0,0 +1,18 @@
|
|||
.pageinfo {
|
||||
font-weight: $font-weight-medium;
|
||||
background: $gray-100;
|
||||
color: inherit;
|
||||
border-radius: 0;
|
||||
margin: 2rem;
|
||||
padding: 1.5rem;
|
||||
padding-bottom: 0.5rem;
|
||||
|
||||
@each $color, $value in $theme-colors {
|
||||
&-#{$color} {
|
||||
|
||||
border-style: solid;
|
||||
border-color: $value;
|
||||
}
|
||||
}
|
||||
|
||||
}
|
120
_vendor/github.com/google/docsy/assets/scss/_search.scss
generated
Normal file
120
_vendor/github.com/google/docsy/assets/scss/_search.scss
generated
Normal file
|
@ -0,0 +1,120 @@
|
|||
// Search
|
||||
|
||||
.td-search {
|
||||
background: transparent;
|
||||
position: relative;
|
||||
width: 90%;
|
||||
|
||||
// Search icon
|
||||
&__icon {
|
||||
// Vertically center the content.
|
||||
display: flex;
|
||||
align-items: center;
|
||||
height: 100%;
|
||||
|
||||
// Position this on the left of the input.
|
||||
position: absolute;
|
||||
left: 0.75em;
|
||||
|
||||
// Click-through to the underlying input.
|
||||
pointer-events: none;
|
||||
|
||||
&:before {
|
||||
@extend .fa;
|
||||
content: fa-content($fa-var-search);
|
||||
}
|
||||
|
||||
// Styling adjustments for the navbar
|
||||
@at-root {
|
||||
.td-navbar & {
|
||||
color: $navbar-dark-color;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
// Search input element
|
||||
&__input {
|
||||
width: 100%;
|
||||
text-indent: 1.25em;
|
||||
|
||||
@if $enable-rounded {
|
||||
border-radius: 1rem;
|
||||
}
|
||||
|
||||
&:not(:focus) {
|
||||
background: transparent;
|
||||
}
|
||||
|
||||
&.form-control:focus {
|
||||
border-color: lighten($primary, 60%);
|
||||
box-shadow: 0 0 0 2px lighten($primary, 30%);
|
||||
color: inherit;
|
||||
}
|
||||
|
||||
// Styling adjustments for the navbar
|
||||
@at-root {
|
||||
.td-navbar & {
|
||||
border: none;
|
||||
color: $navbar-dark-color;
|
||||
|
||||
@include placeholder {
|
||||
color: $navbar-dark-color;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
// Hide icon on focus
|
||||
&:focus-within {
|
||||
|
||||
.td-search__icon {
|
||||
display: none;
|
||||
}
|
||||
|
||||
.td-search-input {
|
||||
text-indent: 0px;
|
||||
}
|
||||
}
|
||||
|
||||
&:not(:focus-within) {
|
||||
color: $input-placeholder-color;
|
||||
}
|
||||
}
|
||||
|
||||
// Offline search
|
||||
|
||||
.td-search--offline {
|
||||
|
||||
&:focus-within {
|
||||
// Don't hide the search icon on focus: this gives better UX when user
|
||||
// explores content of search-results popup and focus is lost.
|
||||
|
||||
.td-search__icon {
|
||||
display: flex;
|
||||
color: $input-placeholder-color;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.td-offline-search-results {
|
||||
max-width: 90%;
|
||||
|
||||
.card {
|
||||
margin-bottom: $spacer * .5;
|
||||
|
||||
.card-header {
|
||||
font-weight: bold;
|
||||
}
|
||||
}
|
||||
|
||||
&__close-button {
|
||||
// cursor: pointer;
|
||||
float: right;
|
||||
|
||||
&:after {
|
||||
@extend .fas;
|
||||
content: fa-content($fa-var-times);
|
||||
}
|
||||
}
|
||||
}
|
62
_vendor/github.com/google/docsy/assets/scss/_sidebar-toc.scss
generated
Normal file
62
_vendor/github.com/google/docsy/assets/scss/_sidebar-toc.scss
generated
Normal file
|
@ -0,0 +1,62 @@
|
|||
//
|
||||
// Right side toc
|
||||
//
|
||||
.td-sidebar-toc {
|
||||
border-left: 1px solid $border-color;
|
||||
|
||||
@supports (position: sticky) {
|
||||
position: sticky;
|
||||
top: 4rem;
|
||||
height: calc(100vh - 4rem);
|
||||
overflow-y: auto;
|
||||
}
|
||||
|
||||
order: 2;
|
||||
padding-top: 0.75rem;
|
||||
padding-bottom: 1.5rem;
|
||||
vertical-align: top;
|
||||
|
||||
}
|
||||
|
||||
.td-page-meta {
|
||||
a {
|
||||
display: block;
|
||||
font-weight: $font-weight-medium;
|
||||
}
|
||||
}
|
||||
|
||||
.td-toc {
|
||||
|
||||
a {
|
||||
display: block;
|
||||
font-weight: $font-weight-light;
|
||||
padding-bottom: .25rem;
|
||||
}
|
||||
|
||||
li {
|
||||
list-style: none;
|
||||
display: block;
|
||||
}
|
||||
|
||||
li li {
|
||||
margin-left: 0.5rem;
|
||||
}
|
||||
|
||||
#TableOfContents {
|
||||
// Hugo's ToC is a mouthful, this can be used to style the top level h2 entries.
|
||||
> ul > li > ul > li > a {}
|
||||
|
||||
a {
|
||||
color: $gray-600;
|
||||
|
||||
&:hover {
|
||||
color: $blue;
|
||||
text-decoration: none;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
ul {
|
||||
padding-left: 0;
|
||||
}
|
||||
}
|
162
_vendor/github.com/google/docsy/assets/scss/_sidebar-tree.scss
generated
Normal file
162
_vendor/github.com/google/docsy/assets/scss/_sidebar-tree.scss
generated
Normal file
|
@ -0,0 +1,162 @@
|
|||
//
|
||||
// Left side navigation
|
||||
//
|
||||
.td-sidebar-nav {
|
||||
padding-right: 0.5rem;
|
||||
margin-right: -15px;
|
||||
margin-left: -15px;
|
||||
|
||||
@include media-breakpoint-up(md) {
|
||||
@supports (position: sticky) {
|
||||
max-height: calc(100vh - 10rem);
|
||||
overflow-y: auto;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
@include media-breakpoint-up(md) {
|
||||
display: block !important;
|
||||
}
|
||||
|
||||
|
||||
&__section {
|
||||
li {
|
||||
list-style: none;
|
||||
}
|
||||
|
||||
ul {
|
||||
padding: 0;
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
@include media-breakpoint-up(md) {
|
||||
& .ul-1 ul {
|
||||
padding-left: 1.5em;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
padding-left: 0;
|
||||
}
|
||||
|
||||
&__section-title {
|
||||
display: block;
|
||||
font-weight: $font-weight-medium;
|
||||
|
||||
.active {
|
||||
font-weight: $font-weight-bold;
|
||||
}
|
||||
|
||||
a {
|
||||
color: $gray-900;
|
||||
}
|
||||
}
|
||||
|
||||
.td-sidebar-link {
|
||||
display: block;
|
||||
padding-bottom: 0.375rem;
|
||||
|
||||
&__page {
|
||||
color: $gray-700;
|
||||
font-weight: $font-weight-light;
|
||||
}
|
||||
}
|
||||
|
||||
a {
|
||||
&:hover {
|
||||
color: $blue;
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
&.active {
|
||||
font-weight: $font-weight-bold;
|
||||
}
|
||||
}
|
||||
|
||||
.dropdown {
|
||||
a {
|
||||
color: $gray-700;
|
||||
}
|
||||
|
||||
.nav-link {
|
||||
padding: 0 0 1rem;
|
||||
}
|
||||
}
|
||||
|
||||
& > .td-sidebar-nav__section {
|
||||
padding-top: .5rem;
|
||||
padding-left: 1.5rem;
|
||||
}
|
||||
|
||||
li i { // Layout of icons
|
||||
padding-right: 0.5em;
|
||||
&:before{
|
||||
display: inline-block;
|
||||
text-align: center;
|
||||
min-width: 1em;
|
||||
}
|
||||
}
|
||||
|
||||
.td-sidebar-link.tree-root{
|
||||
font-weight: $font-weight-bold;
|
||||
color: $td-sidebar-tree-root-color;
|
||||
border-bottom: 1px $td-sidebar-tree-root-color solid;
|
||||
margin-bottom: 1rem;
|
||||
}
|
||||
}
|
||||
|
||||
.td-sidebar {
|
||||
@include media-breakpoint-up(md) {
|
||||
padding-top: 4rem;
|
||||
background-color: $td-sidebar-bg-color;
|
||||
padding-right: 1rem;
|
||||
border-right: 1px solid $td-sidebar-border-color;
|
||||
}
|
||||
|
||||
|
||||
padding-bottom: 1rem;
|
||||
|
||||
&__toggle {
|
||||
line-height: 1;
|
||||
color: $gray-900;
|
||||
margin: 1rem;
|
||||
}
|
||||
|
||||
&__search {
|
||||
padding: 1rem 15px;
|
||||
margin-right: -15px;
|
||||
margin-left: -15px;
|
||||
}
|
||||
|
||||
&__inner {
|
||||
order: 0;
|
||||
|
||||
@include media-breakpoint-up(md) {
|
||||
@supports (position: sticky) {
|
||||
position: sticky;
|
||||
top: 4rem;
|
||||
z-index: 10;
|
||||
height: calc(100vh - 6rem);
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
@include media-breakpoint-up(xl) {
|
||||
flex: 0 1 320px;
|
||||
}
|
||||
|
||||
|
||||
.td-search-box {
|
||||
width: 100%;
|
||||
}
|
||||
}
|
||||
|
||||
#content-desktop {display: block;}
|
||||
#content-mobile {display: none;}
|
||||
|
||||
@include media-breakpoint-down(md) {
|
||||
|
||||
#content-desktop {display: none;}
|
||||
#content-mobile {display: block;}
|
||||
}
|
||||
}
|
7
_vendor/github.com/google/docsy/assets/scss/_styles_project.scss
generated
Normal file
7
_vendor/github.com/google/docsy/assets/scss/_styles_project.scss
generated
Normal file
|
@ -0,0 +1,7 @@
|
|||
/*
|
||||
|
||||
Nothing defined here. The Hugo project that uses this theme can override Bootstrap by adding a file to:
|
||||
|
||||
assets/scss/_styles_project.scss
|
||||
|
||||
*/
|
348
_vendor/github.com/google/docsy/assets/scss/_taxonomy.scss
generated
Normal file
348
_vendor/github.com/google/docsy/assets/scss/_taxonomy.scss
generated
Normal file
|
@ -0,0 +1,348 @@
|
|||
// Taxonomies - e.g. Tags, Categories, ...
|
||||
|
||||
.taxonomy-terms-article {
|
||||
width: 100%;
|
||||
clear: both;
|
||||
font-size: 0.8rem;
|
||||
|
||||
.taxonomy-title {
|
||||
display: inline;
|
||||
font-size: 1.25em;
|
||||
height: 1em;
|
||||
line-height: 1em;
|
||||
margin-right: 0.5em;
|
||||
padding: 0;
|
||||
}
|
||||
}
|
||||
|
||||
.taxonomy-terms-cloud {
|
||||
width: 100%;
|
||||
clear: both;
|
||||
font-size: 0.8rem;
|
||||
|
||||
.taxonomy-title {
|
||||
display: inline-block;
|
||||
width: 100%;
|
||||
font-size: 1rem;
|
||||
font-weight: 700;
|
||||
color: $primary;
|
||||
border-bottom: 1px $primary solid;
|
||||
margin-bottom: 1em;
|
||||
padding-bottom: 0.375rem;
|
||||
margin-top: 1em;
|
||||
}
|
||||
}
|
||||
|
||||
.taxonomy-terms-page {
|
||||
max-width: 800px;
|
||||
margin: auto;
|
||||
|
||||
h1 {
|
||||
margin-bottom: 1em;
|
||||
}
|
||||
|
||||
.taxonomy-terms-cloud {
|
||||
font-size: 1em;
|
||||
|
||||
li {
|
||||
display: block;
|
||||
}
|
||||
}
|
||||
|
||||
.taxo-text-tags {
|
||||
|
||||
li + li::before {
|
||||
content: none;
|
||||
}
|
||||
}
|
||||
|
||||
.taxo-fruits {
|
||||
|
||||
.taxonomy-count,
|
||||
.taxonomy-label {
|
||||
display: inherit;
|
||||
font-size: 1rem;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
padding-right: 0.5em;
|
||||
}
|
||||
|
||||
.taxonomy-count::before {
|
||||
content: "(";
|
||||
}
|
||||
.taxonomy-count::after {
|
||||
content: ")";
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.taxonomy-terms {
|
||||
list-style: none;
|
||||
margin: 0;
|
||||
overflow: hidden;
|
||||
padding: 0;
|
||||
display: inline;
|
||||
|
||||
li {
|
||||
// https://stackoverflow.com/questions/3247358/how-do-i-wrap-text-with-no-whitespace-inside-a-td
|
||||
display: inline;
|
||||
overflow-wrap: break-word;
|
||||
word-wrap: break-word;
|
||||
-ms-word-break: break-all;
|
||||
word-break: break-all;
|
||||
word-break: break-word;
|
||||
-ms-hyphens: auto;
|
||||
-moz-hyphens: auto;
|
||||
-webkit-hyphens: auto;
|
||||
hyphens: auto;
|
||||
}
|
||||
}
|
||||
|
||||
.taxonomy-count {
|
||||
font-size: 0.8em;
|
||||
line-height: 1.25em;
|
||||
display: inline-block;
|
||||
padding-left: 0.6em;
|
||||
padding-right: 0.6em;
|
||||
margin-left: 0.6em;
|
||||
text-align: center;
|
||||
border-radius: 1em;
|
||||
background-color: $white;
|
||||
}
|
||||
|
||||
.taxonomy-term {
|
||||
background: $gray-200;
|
||||
border-width: 0;
|
||||
border-radius: 0 3px 3px 0;
|
||||
color: $gray-600;
|
||||
display: inline-block;
|
||||
font-size: 1em;
|
||||
line-height: 1.5em;
|
||||
min-height: 1.5em;
|
||||
max-width: 100%;
|
||||
padding: 0 0.5em 0 1em;
|
||||
position: relative;
|
||||
margin: 0 0.5em 0.2em 0;
|
||||
text-decoration: none;
|
||||
-webkit-transition: color 0.2s;
|
||||
-webkit-clip-path: polygon(100% 0,100% 100%,0.8em 100%,0 50%,0.8em 0);
|
||||
clip-path: polygon(100% 0,100% 100%,0.8em 100%,0 50%,0.8em 0);
|
||||
|
||||
&:hover {
|
||||
background-color: $primary;
|
||||
color: $white;
|
||||
|
||||
.taxonomy-count{
|
||||
color: $dark!important;
|
||||
}
|
||||
}
|
||||
|
||||
&:hover::before {
|
||||
background: $primary;
|
||||
}
|
||||
}
|
||||
|
||||
// Example for simple tags layout
|
||||
.taxo-text-tags {
|
||||
|
||||
.taxonomy-term {
|
||||
background: none;
|
||||
border-width: 0;
|
||||
border-radius: 0;
|
||||
color: $gray-600;
|
||||
font-size: 1em;
|
||||
line-height: 1.5em;
|
||||
min-height: 1.5em;
|
||||
max-width: 100%;
|
||||
padding: 0;
|
||||
position: relative;
|
||||
margin: 0;
|
||||
text-decoration: none;
|
||||
-webkit-clip-path: none;
|
||||
clip-path: none;
|
||||
|
||||
&:hover {
|
||||
background: none;
|
||||
color: $link-color;
|
||||
|
||||
.taxonomy-count{
|
||||
color: $dark!important;
|
||||
}
|
||||
}
|
||||
|
||||
&:hover::before {
|
||||
background: none;
|
||||
}
|
||||
}
|
||||
|
||||
li + li::before {
|
||||
content: "|";
|
||||
color: $gray-600;
|
||||
margin-right: 0.2em;
|
||||
}
|
||||
|
||||
.taxonomy-count {
|
||||
font-size: 1em;
|
||||
line-height: 1.25em;
|
||||
display: inline-block;
|
||||
padding: 0;
|
||||
margin: 0;
|
||||
text-align: center;
|
||||
border-radius: 0;
|
||||
background: none;
|
||||
vertical-align: super;
|
||||
font-size: 0.75em;
|
||||
}
|
||||
|
||||
.taxonomy-term:hover .taxonomy-count {
|
||||
color: $link-color !important;
|
||||
}
|
||||
}
|
||||
|
||||
// Example for icon tags
|
||||
.taxo-fruits {
|
||||
|
||||
.taxonomy-term[data-taxonomy-term]::before {
|
||||
font-style: normal;
|
||||
font-variant: normal;
|
||||
text-rendering: auto;
|
||||
-webkit-font-smoothing: antialiased;
|
||||
font-family: $font-awesome-font-name;
|
||||
// font-weight: 900;
|
||||
padding-right: 0.5em;
|
||||
font-size: 2em;
|
||||
min-width: 1.5em;
|
||||
display: inline-block;
|
||||
}
|
||||
|
||||
.taxonomy-term[data-taxonomy-term="apple"]::before {
|
||||
content: "\f5d1";
|
||||
color: red;
|
||||
}
|
||||
|
||||
.taxonomy-term[data-taxonomy-term="carrot"]::before {
|
||||
content: "\f787";
|
||||
color: orange;
|
||||
}
|
||||
|
||||
.taxonomy-term[data-taxonomy-term="lemon"]::before {
|
||||
content: "\f094";
|
||||
color: limegreen;
|
||||
}
|
||||
|
||||
.taxonomy-term[data-taxonomy-term="pepper"]::before {
|
||||
content: "\f816";
|
||||
color: darkred;
|
||||
}
|
||||
|
||||
.taxonomy-term {
|
||||
background: none;
|
||||
border-width: 0;
|
||||
border-radius: 0;
|
||||
color: $gray-600;
|
||||
font-size: 1em;
|
||||
line-height: 2.5em;
|
||||
max-width: 100%;
|
||||
padding: 0;
|
||||
position: relative;
|
||||
margin: 0;
|
||||
text-decoration: none;
|
||||
-webkit-clip-path: none;
|
||||
clip-path: none;
|
||||
|
||||
&:hover {
|
||||
background: none;
|
||||
color: $link-color;
|
||||
|
||||
.taxonomy-count{
|
||||
color: $dark!important;
|
||||
}
|
||||
}
|
||||
|
||||
&:hover::before {
|
||||
background: none;
|
||||
text-shadow: 0 0 3px $gray-900;
|
||||
}
|
||||
}
|
||||
|
||||
.taxonomy-count,
|
||||
.taxonomy-label {
|
||||
display: none;
|
||||
}
|
||||
|
||||
&.taxonomy-terms-article {
|
||||
margin-bottom: 1rem;
|
||||
|
||||
.taxonomy-title {
|
||||
display: none;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.taxonomy-taxonomy-page {
|
||||
max-width: 800px;
|
||||
margin: auto;
|
||||
|
||||
h1 {
|
||||
margin-bottom: 1em;
|
||||
}
|
||||
}
|
||||
|
||||
.article-meta {
|
||||
margin-bottom: 1.5rem;
|
||||
}
|
||||
|
||||
.article-teaser.article-type-docs h3 a:before {
|
||||
display: inline-block;
|
||||
font-style: normal;
|
||||
font-variant: normal;
|
||||
text-rendering: auto;
|
||||
-webkit-font-smoothing: antialiased;
|
||||
font-family: $font-awesome-font-name;
|
||||
content: "\f02d";
|
||||
padding-right: 0.5em;
|
||||
}
|
||||
|
||||
.article-teaser.article-type-blog h3 a:before {
|
||||
display: inline-block;
|
||||
font-style: normal;
|
||||
font-variant: normal;
|
||||
text-rendering: auto;
|
||||
-webkit-font-smoothing: antialiased;
|
||||
font-family: $font-awesome-font-name;
|
||||
content: "\f781";
|
||||
padding-right: 0.5em;
|
||||
}
|
||||
|
||||
.all-taxonomy-terms {
|
||||
font-weight: 500;
|
||||
line-height: 1.2;
|
||||
font-size: 1.5rem;
|
||||
|
||||
&:before {
|
||||
display: inline-block;
|
||||
font-style: normal;
|
||||
font-variant: normal;
|
||||
text-rendering: auto;
|
||||
-webkit-font-smoothing: antialiased;
|
||||
font-family: $font-awesome-font-name;
|
||||
content: "\f122";
|
||||
padding-right: 0.5em;
|
||||
}
|
||||
}
|
||||
|
||||
.article-teaser {
|
||||
&.card {
|
||||
padding: 1.0em;
|
||||
margin-bottom: 1.5em;
|
||||
}
|
||||
|
||||
.breadcrumb {
|
||||
margin-bottom: 0em;
|
||||
font-size: 0.85rem;
|
||||
}
|
||||
|
||||
.article-meta {
|
||||
margin-bottom: 0em;
|
||||
}
|
||||
}
|
131
_vendor/github.com/google/docsy/assets/scss/_variables.scss
generated
Normal file
131
_vendor/github.com/google/docsy/assets/scss/_variables.scss
generated
Normal file
|
@ -0,0 +1,131 @@
|
|||
/*
|
||||
|
||||
Bootstrap variables overrides for theme.
|
||||
See https://github.com/twbs/bootstrap/pull/23260
|
||||
*/
|
||||
|
||||
// Bootstrap flags. For more, see https://getbootstrap.com/docs/4.0/getting-started/theming/
|
||||
$enable-gradients: true !default;
|
||||
$enable-rounded: true !default;
|
||||
$enable-shadows: true !default;
|
||||
|
||||
// Theme flags.
|
||||
|
||||
$td-enable-google-fonts: true !default;
|
||||
|
||||
// Theme colors
|
||||
|
||||
$primary: #30638E !default;
|
||||
$primary-light: lighten($primary, 75%) !default;
|
||||
$secondary: #FFA630 !default;
|
||||
$success: #3772FF !default;
|
||||
$info: #C0E0DE !default;
|
||||
$warning: #ED6A5A !default;
|
||||
$danger: #ED6A5A !default;
|
||||
$white: #fff !default;
|
||||
$light: #D3F3EE !default;
|
||||
|
||||
$dark: #403F4C !default;
|
||||
$blue: #72A1E5 !default;
|
||||
$orange: #BA5A31 !default;
|
||||
$gray-100: #f8f9fa !default;
|
||||
$gray-200: #eee !default;
|
||||
$gray-300: #dee2e6 !default;
|
||||
$gray-400: #ccc !default;
|
||||
$gray-500: #adb5bd !default;
|
||||
$gray-600: #797676 !default;
|
||||
$gray-700: #495057 !default;
|
||||
$gray-800: #333 !default;
|
||||
$gray-900: #222 !default;
|
||||
$black: #000 !default;
|
||||
|
||||
$code-color: darken($secondary, 20%) !default;
|
||||
|
||||
// UI element colors
|
||||
|
||||
$border-color: $gray-300 !default;
|
||||
$td-sidebar-tree-root-color: $primary !default;
|
||||
$td-sidebar-bg-color: rgba($primary, 0.03) !default;
|
||||
$td-sidebar-border-color: $border-color !default;
|
||||
|
||||
// Background colors for the sections on home page etc. It is a paint by number system, starting at 0, where the number is taken from the shortcode's ordinal
|
||||
// if not provided by the user.
|
||||
// These colors are all part of the theme palette, but the mix is fairly random to create variation. This can be overridden by the project if needed.
|
||||
$td-box-colors: $dark, $primary, $secondary, $info, $primary-light, $gray-600, $success, $warning, $dark, $danger, $primary, $secondary, $primary-light, $info !default;
|
||||
|
||||
$link-color: darken($blue, 15%) !default;
|
||||
$link-decoration: none !default;
|
||||
$link-hover-color: darken($link-color, 15%) !default;
|
||||
$link-hover-decoration: none !default;
|
||||
|
||||
// Fonts
|
||||
|
||||
$google_font_name: "Open Sans" !default;
|
||||
$google_font_family: "Open+Sans:300,300i,400,400i,700,700i" !default;
|
||||
$web-font-path: "https://fonts.googleapis.com/css?family=#{$google_font_family}&display=swap";
|
||||
$font-awesome-font-name: "Font Awesome 6 Free" !default;
|
||||
|
||||
$td-fonts-serif: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
|
||||
|
||||
@if $td-enable-google-fonts {
|
||||
$td-fonts-serif: prepend($td-fonts-serif, "#{$google_font_name}");
|
||||
}
|
||||
|
||||
$font-family-sans-serif: $td-fonts-serif !default;
|
||||
|
||||
$font-family-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace !default;
|
||||
$font-family-base: $font-family-sans-serif !default;
|
||||
$font-size-base: 1rem !default;
|
||||
|
||||
// Font weights
|
||||
|
||||
$font-weight-light: 300 !default;
|
||||
$font-weight-normal: 400 !default;
|
||||
$font-weight-medium: 500 !default;
|
||||
$font-weight-bold: 700 !default;
|
||||
|
||||
$font-weight-body-text: $font-weight-normal !default;
|
||||
$headings-font-weight: $font-weight-medium !default;
|
||||
|
||||
// Heading sizes
|
||||
|
||||
$h1-font-size: $font-size-base * 2.25 !default;
|
||||
$h2-font-size: $font-size-base * 2 !default;
|
||||
$h3-font-size: $font-size-base * 1.5 !default;
|
||||
$h4-font-size: $font-size-base * 1.35 !default;
|
||||
$h5-font-size: $font-size-base * 1.15 !default;
|
||||
$h6-font-size: $font-size-base !default;
|
||||
|
||||
// Display styles
|
||||
|
||||
$display1-weight: $font-weight-bold !default;
|
||||
$display2-weight: $font-weight-bold !default;
|
||||
$display3-weight: $font-weight-bold !default;
|
||||
$display4-weight: $font-weight-bold !default;
|
||||
$display1-size: 3rem !default;
|
||||
$display2-size: 2.5rem !default;
|
||||
$display3-size: 2rem !default;
|
||||
$display4-size: 1.75rem !default;
|
||||
|
||||
// Space
|
||||
|
||||
$spacer: 1rem;
|
||||
$td-block-space-top-base: 4 * $spacer !default;
|
||||
$td-block-space-bottom-base: 4 * $spacer !default;
|
||||
|
||||
// Pagination
|
||||
|
||||
$pagination-color: $gray-600 !default;
|
||||
$pagination-border-color: rgba($black, 0.1) !default;
|
||||
$pagination-active-border-color: darken($primary, 5%) !default;
|
||||
$pagination-disabled-color: $gray-300 !default;
|
||||
|
||||
// Navbar
|
||||
|
||||
$navbar-dark-color: rgba($white, 0.75) !default;
|
||||
$navbar-dark-hover-color: rgba($white, 0.5) !default;
|
||||
$navbar-dark-active-color: $white !default;
|
||||
$navbar-dark-disabled-color: rgba($white, 0.25) !default;
|
||||
|
||||
// The yiq lightness value that determines when the lightness of color changes from "dark" to "light".
|
||||
$yiq-contrasted-threshold: 200 !default;
|
7
_vendor/github.com/google/docsy/assets/scss/_variables_project.scss
generated
Normal file
7
_vendor/github.com/google/docsy/assets/scss/_variables_project.scss
generated
Normal file
|
@ -0,0 +1,7 @@
|
|||
/*
|
||||
|
||||
Nothing defined here. The Hugo project that uses this theme can override theme variables by adding a file to:
|
||||
|
||||
assets/scss/_variables_project.scss
|
||||
|
||||
*/
|
7
_vendor/github.com/google/docsy/assets/scss/blocks/_blocks.scss
generated
Normal file
7
_vendor/github.com/google/docsy/assets/scss/blocks/_blocks.scss
generated
Normal file
|
@ -0,0 +1,7 @@
|
|||
@import "cover";
|
||||
|
||||
.td-bg-arrow {
|
||||
&-wrapper {
|
||||
position: relative;
|
||||
}
|
||||
}
|
24
_vendor/github.com/google/docsy/assets/scss/blocks/_cover.scss
generated
Normal file
24
_vendor/github.com/google/docsy/assets/scss/blocks/_cover.scss
generated
Normal file
|
@ -0,0 +1,24 @@
|
|||
// A cover block is a full size cover with a fixed background for smaller screens.
|
||||
|
||||
@include td-box-height-modifiers(".td-cover-block");
|
||||
|
||||
.td-cover-logo {
|
||||
margin-right: 0.5em;
|
||||
}
|
||||
|
||||
.td-cover-block {
|
||||
position: relative;
|
||||
padding-top: 5rem;
|
||||
padding-bottom: 5rem;
|
||||
background: {
|
||||
repeat: no-repeat;
|
||||
position: 50% 0;
|
||||
size: cover;
|
||||
};
|
||||
|
||||
& > .byline {
|
||||
position: absolute;
|
||||
bottom: 2px;
|
||||
right: 4px;
|
||||
}
|
||||
}
|
69
_vendor/github.com/google/docsy/assets/scss/main.scss
generated
Normal file
69
_vendor/github.com/google/docsy/assets/scss/main.scss
generated
Normal file
|
@ -0,0 +1,69 @@
|
|||
@import "support/functions";
|
||||
@import "variables_project";
|
||||
@import "variables";
|
||||
@import "support/mixins";
|
||||
|
||||
@import "../vendor/bootstrap/scss/bootstrap";
|
||||
|
||||
@import "../vendor/Font-Awesome/scss/fontawesome.scss";
|
||||
@import "../vendor/Font-Awesome/scss/solid.scss";
|
||||
@import "../vendor/Font-Awesome/scss/brands.scss";
|
||||
|
||||
@import "support/utilities";
|
||||
@import "colors";
|
||||
@import "boxes";
|
||||
@import "blog";
|
||||
@import "code";
|
||||
@import "nav";
|
||||
@import "sidebar-tree";
|
||||
@import "sidebar-toc";
|
||||
@import "buttons";
|
||||
@import "breadcrumb";
|
||||
@import "alerts";
|
||||
@import "content";
|
||||
@import "search";
|
||||
@import "main-container";
|
||||
@import "blocks/blocks";
|
||||
@import "section-index";
|
||||
@import "pageinfo";
|
||||
@import "taxonomy";
|
||||
@import "drawio";
|
||||
@import "shortcodes";
|
||||
|
||||
@if $td-enable-google-fonts {
|
||||
@import url($web-font-path);
|
||||
}
|
||||
|
||||
footer {
|
||||
min-height: 150px;
|
||||
|
||||
@include media-breakpoint-down(md) {
|
||||
min-height: 200px;
|
||||
}
|
||||
}
|
||||
|
||||
// Adjust anchors vs the fixed menu.
|
||||
@include media-breakpoint-up(md) {
|
||||
.td-offset-anchor:target {
|
||||
display: block;
|
||||
position: relative;
|
||||
top: -4rem;
|
||||
visibility: hidden;
|
||||
}
|
||||
|
||||
h2[id]:before,
|
||||
h3[id]:before,
|
||||
h4[id]:before,
|
||||
h5[id]:before {
|
||||
display: block;
|
||||
content: " ";
|
||||
margin-top: -5rem;
|
||||
height: 5rem;
|
||||
visibility: hidden;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
||||
@import "rtl/main";
|
||||
@import "styles_project";
|
51
_vendor/github.com/google/docsy/assets/scss/rtl/_main.scss
generated
Normal file
51
_vendor/github.com/google/docsy/assets/scss/rtl/_main.scss
generated
Normal file
|
@ -0,0 +1,51 @@
|
|||
body:lang(fa),
|
||||
body:lang(ar),
|
||||
body:lang(az),
|
||||
body:lang(dv),
|
||||
body:lang(he),
|
||||
body:lang(ku),
|
||||
body:lang(ur) {
|
||||
|
||||
@import 'spacing';
|
||||
|
||||
direction: rtl;
|
||||
text-align: right;
|
||||
|
||||
.dropdown-menu {
|
||||
text-align: right;
|
||||
}
|
||||
|
||||
.text-right {
|
||||
text-align: left !important;
|
||||
}
|
||||
|
||||
pre {
|
||||
text-align: left;
|
||||
direction: ltr;
|
||||
}
|
||||
|
||||
.td-rss-button {
|
||||
left: 1rem !important;
|
||||
right: auto !important;
|
||||
}
|
||||
}
|
||||
|
||||
body:lang(fa) {
|
||||
@import url('https://cdn.jsdelivr.net/gh/rastikerdar/vazir-font@v27.0.1/dist/font-face.css');
|
||||
font-family: 'Vazir', "Open Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
|
||||
}
|
||||
|
||||
body:lang(he) {
|
||||
@if $td-enable-google-fonts {
|
||||
@import url('https://fonts.googleapis.com/css2?family=Rubik:wght@300;400;500;600;700&display=swap');
|
||||
}
|
||||
font-family: 'Rubik', "Open Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
|
||||
}
|
||||
|
||||
body:lang(ar) {
|
||||
@if $td-enable-google-fonts {
|
||||
@import url('https://fonts.googleapis.com/css2?family=Tajawal:wght@300;400;500;700&display=swap');
|
||||
}
|
||||
font-family: 'Tajawal', "Open Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
|
||||
}
|
||||
|
91
_vendor/github.com/google/docsy/assets/scss/rtl/_spacing.scss
generated
Normal file
91
_vendor/github.com/google/docsy/assets/scss/rtl/_spacing.scss
generated
Normal file
|
@ -0,0 +1,91 @@
|
|||
@each $breakpoint in map-keys($grid-breakpoints) {
|
||||
@include media-breakpoint-up($breakpoint) {
|
||||
$infix: breakpoint-infix($breakpoint, $grid-breakpoints);
|
||||
|
||||
@each $prop,
|
||||
$abbrev in (margin: m, padding: p) {
|
||||
|
||||
@each $size,
|
||||
$length in $spacers {
|
||||
.#{$abbrev}#{$infix}-#{$size} {
|
||||
#{$prop}: $length !important;
|
||||
}
|
||||
|
||||
.#{$abbrev}t#{$infix}-#{$size},
|
||||
.#{$abbrev}y#{$infix}-#{$size} {
|
||||
#{$prop}-top: $length !important;
|
||||
}
|
||||
|
||||
.#{$abbrev}r#{$infix}-#{$size},
|
||||
.#{$abbrev}x#{$infix}-#{$size} {
|
||||
#{$prop}-inline-end: $length !important;
|
||||
}
|
||||
|
||||
.#{$abbrev}b#{$infix}-#{$size},
|
||||
.#{$abbrev}y#{$infix}-#{$size} {
|
||||
#{$prop}-bottom: $length !important;
|
||||
}
|
||||
|
||||
.#{$abbrev}l#{$infix}-#{$size},
|
||||
.#{$abbrev}x#{$infix}-#{$size} {
|
||||
#{$prop}-inline-start: $length !important;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
// Negative margins (e.g., where `.mb-n1` is negative version of `.mb-1`)
|
||||
@each $size,
|
||||
$length in $spacers {
|
||||
@if $size !=0 {
|
||||
.m#{$infix}-n#{$size} {
|
||||
margin: -$length !important;
|
||||
}
|
||||
|
||||
.mt#{$infix}-n#{$size},
|
||||
.my#{$infix}-n#{$size} {
|
||||
margin-top: -$length !important;
|
||||
}
|
||||
|
||||
.mr#{$infix}-n#{$size},
|
||||
.mx#{$infix}-n#{$size} {
|
||||
margin-right: -$length !important;
|
||||
}
|
||||
|
||||
.mb#{$infix}-n#{$size},
|
||||
.my#{$infix}-n#{$size} {
|
||||
margin-bottom: -$length !important;
|
||||
}
|
||||
|
||||
.ml#{$infix}-n#{$size},
|
||||
.mx#{$infix}-n#{$size} {
|
||||
margin-left: -$length !important;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
// Some special margin utils
|
||||
.m#{$infix}-auto {
|
||||
margin: auto !important;
|
||||
}
|
||||
|
||||
.mt#{$infix}-auto,
|
||||
.my#{$infix}-auto {
|
||||
margin-top: auto !important;
|
||||
}
|
||||
|
||||
.mr#{$infix}-auto,
|
||||
.mx#{$infix}-auto {
|
||||
margin-right: auto !important;
|
||||
}
|
||||
|
||||
.mb#{$infix}-auto,
|
||||
.my#{$infix}-auto {
|
||||
margin-bottom: auto !important;
|
||||
}
|
||||
|
||||
.ml#{$infix}-auto,
|
||||
.mx#{$infix}-auto {
|
||||
margin-left: auto !important;
|
||||
}
|
||||
}
|
||||
}
|
18
_vendor/github.com/google/docsy/assets/scss/section-index.scss
generated
Normal file
18
_vendor/github.com/google/docsy/assets/scss/section-index.scss
generated
Normal file
|
@ -0,0 +1,18 @@
|
|||
.section-index {
|
||||
|
||||
.entry {
|
||||
padding: .75rem;
|
||||
}
|
||||
|
||||
h5 {
|
||||
margin-bottom: 0;
|
||||
|
||||
a {
|
||||
font-weight: 700;
|
||||
}
|
||||
}
|
||||
|
||||
p {
|
||||
margin-top: 0;
|
||||
}
|
||||
}
|
2
_vendor/github.com/google/docsy/assets/scss/shortcodes.scss
generated
Normal file
2
_vendor/github.com/google/docsy/assets/scss/shortcodes.scss
generated
Normal file
|
@ -0,0 +1,2 @@
|
|||
@import "shortcodes/tabbed-pane.scss";
|
||||
@import "shortcodes/cards-pane.scss";
|
25
_vendor/github.com/google/docsy/assets/scss/shortcodes/cards-pane.scss
generated
Normal file
25
_vendor/github.com/google/docsy/assets/scss/shortcodes/cards-pane.scss
generated
Normal file
|
@ -0,0 +1,25 @@
|
|||
.td-card-deck.card-deck {
|
||||
@extend .td-max-width-on-larger-screens;
|
||||
}
|
||||
|
||||
.td-card {
|
||||
&.card {
|
||||
@extend .td-max-width-on-larger-screens;
|
||||
|
||||
.highlight {
|
||||
border: none;
|
||||
}
|
||||
}
|
||||
|
||||
.card-body {
|
||||
&.code {
|
||||
background-color: #f8f9fa;
|
||||
padding: 0 0 0 1ex;
|
||||
}
|
||||
|
||||
pre {
|
||||
margin: 0;
|
||||
padding: 0 1rem 1rem 1rem;
|
||||
}
|
||||
}
|
||||
}
|
38
_vendor/github.com/google/docsy/assets/scss/shortcodes/tabbed-pane.scss
generated
Normal file
38
_vendor/github.com/google/docsy/assets/scss/shortcodes/tabbed-pane.scss
generated
Normal file
|
@ -0,0 +1,38 @@
|
|||
.tab-content {
|
||||
.tab-pane {
|
||||
pre {
|
||||
margin: 0rem 0 0rem 0;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.tab-content {
|
||||
.tab-pane {
|
||||
.highlight {
|
||||
margin: 0rem 0 0rem 0;
|
||||
border: none;
|
||||
max-width: 100%;
|
||||
}
|
||||
margin-top: 0rem;
|
||||
margin-bottom: 1.5rem;
|
||||
max-width: 80%;
|
||||
border-left: 1px solid rgba(0, 0, 0, 0.125);
|
||||
border-right: 1px solid rgba(0, 0, 0, 0.125);
|
||||
border-bottom: 1px solid rgba(0, 0, 0, 0.125);
|
||||
}
|
||||
}
|
||||
|
||||
.tab-body {
|
||||
font-weight: $font-weight-medium;
|
||||
background: $gray-100;
|
||||
color: inherit;
|
||||
border-radius: 0;
|
||||
padding: 1.5rem;
|
||||
|
||||
@each $color, $value in $theme-colors {
|
||||
&-#{$color} {
|
||||
border-style: solid;
|
||||
border-color: $value;
|
||||
}
|
||||
}
|
||||
}
|
20
_vendor/github.com/google/docsy/assets/scss/support/_functions.scss
generated
Normal file
20
_vendor/github.com/google/docsy/assets/scss/support/_functions.scss
generated
Normal file
|
@ -0,0 +1,20 @@
|
|||
// Common functions.
|
||||
|
||||
@function prepend($list, $value) {
|
||||
@return join($value, $list);
|
||||
}
|
||||
|
||||
|
||||
// See https://www.sitepoint.com/using-sass-build-color-palettes/
|
||||
@function color-diff($a, $b) {
|
||||
$sat: saturation($a) - saturation($b);
|
||||
$lig: lightness($a) - lightness($b);
|
||||
$fn-sat: if($sat > 0, 'desaturate', 'saturate');
|
||||
$fn-lig: if($lig > 0, 'darken', 'lighten');
|
||||
|
||||
@return (
|
||||
adjust-hue: -(hue($a) - hue($b)),
|
||||
#{$fn-sat}: abs($sat),
|
||||
#{$fn-lig}: abs($lig)
|
||||
);
|
||||
}
|
49
_vendor/github.com/google/docsy/assets/scss/support/_mixins.scss
generated
Normal file
49
_vendor/github.com/google/docsy/assets/scss/support/_mixins.scss
generated
Normal file
|
@ -0,0 +1,49 @@
|
|||
// Some simple mixins.
|
||||
|
||||
@mixin bg-gradient-variant($parent, $color,$ignore-warning: false) {
|
||||
#{$parent} {
|
||||
background: $color linear-gradient(180deg, mix($body-bg, $color, 15%), $color) repeat-x !important;
|
||||
}
|
||||
}
|
||||
|
||||
@mixin link-variant($parent, $color, $hover-color, $underline: false) {
|
||||
#{$parent} {
|
||||
color: $color;
|
||||
|
||||
&:hover {
|
||||
color: $hover-color;
|
||||
}
|
||||
|
||||
@if $underline {
|
||||
text-decoration: underline;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@mixin optional-at-root($sel) {
|
||||
@at-root #{if(not &, $sel, selector-append(&, $sel))} {
|
||||
@content;
|
||||
}
|
||||
}
|
||||
|
||||
// placeholder allows styling of the placeholder used in search input etc.
|
||||
@mixin placeholder {
|
||||
@include optional-at-root("::-webkit-input-placeholder") {
|
||||
@content;
|
||||
}
|
||||
|
||||
|
||||
@include optional-at-root(":-moz-placeholder") {
|
||||
@content;
|
||||
}
|
||||
|
||||
|
||||
@include optional-at-root("::-moz-placeholder") {
|
||||
@content;
|
||||
}
|
||||
|
||||
|
||||
@include optional-at-root(":-ms-input-placeholder") {
|
||||
@content;
|
||||
}
|
||||
}
|
82
_vendor/github.com/google/docsy/assets/scss/support/_utilities.scss
generated
Normal file
82
_vendor/github.com/google/docsy/assets/scss/support/_utilities.scss
generated
Normal file
|
@ -0,0 +1,82 @@
|
|||
// Mixins
|
||||
|
||||
@mixin optional-at-root($sel) {
|
||||
@at-root #{if(not &, $sel, selector-append(&, $sel))} {
|
||||
@content;
|
||||
}
|
||||
}
|
||||
|
||||
@mixin placeholder {
|
||||
@include optional-at-root("::-webkit-input-placeholder") {
|
||||
@content;
|
||||
}
|
||||
|
||||
|
||||
@include optional-at-root(":-moz-placeholder") {
|
||||
@content;
|
||||
}
|
||||
|
||||
|
||||
@include optional-at-root("::-moz-placeholder") {
|
||||
@content;
|
||||
}
|
||||
|
||||
|
||||
@include optional-at-root(":-ms-input-placeholder") {
|
||||
@content;
|
||||
}
|
||||
}
|
||||
|
||||
// Common util classes.
|
||||
|
||||
.td-border-top {
|
||||
border: none;
|
||||
border-top: 1px solid #eee;
|
||||
}
|
||||
|
||||
.td-border-none {
|
||||
border: none;
|
||||
}
|
||||
|
||||
.td-block-padding {
|
||||
padding-top: $td-block-space-top-base ;
|
||||
padding-bottom: $td-block-space-bottom-base;
|
||||
|
||||
@include media-breakpoint-up(md) {
|
||||
padding-top: $td-block-space-top-base * 1.25;
|
||||
padding-bottom: $td-block-space-bottom-base * 1.25;
|
||||
}
|
||||
}
|
||||
|
||||
.td-overlay {
|
||||
position: relative;
|
||||
|
||||
&::after {
|
||||
content: "";
|
||||
position: absolute;
|
||||
top: 0;
|
||||
right: 0;
|
||||
bottom: 0;
|
||||
left: 0;
|
||||
}
|
||||
|
||||
&--dark::after {
|
||||
background-color: rgba($dark, 0.3);
|
||||
}
|
||||
|
||||
&--light::after {
|
||||
background-color: rgba($light, 0.3);
|
||||
}
|
||||
|
||||
&__inner {
|
||||
position: relative;
|
||||
z-index: 1;
|
||||
}
|
||||
}
|
||||
|
||||
.td-max-width-on-larger-screens {
|
||||
@include media-breakpoint-up(lg) {
|
||||
max-width: 80%;
|
||||
}
|
||||
|
||||
}
|
16
_vendor/github.com/google/docsy/assets/stubs/new-page-template.md
generated
Normal file
16
_vendor/github.com/google/docsy/assets/stubs/new-page-template.md
generated
Normal file
|
@ -0,0 +1,16 @@
|
|||
---
|
||||
title: "Long Page Title"
|
||||
linkTitle: "Short Nav Title"
|
||||
weight: 100
|
||||
description: >-
|
||||
Page description for heading and indexes.
|
||||
---
|
||||
|
||||
## Heading
|
||||
|
||||
Edit this template to create your new page.
|
||||
|
||||
* Give it a good name, ending in `.md` - e.g. `getting-started.md`
|
||||
* Edit the "front matter" section at the top of the page (weight controls how its ordered amongst other pages in the same directory; lowest number first).
|
||||
* Add a good commit message at the bottom of the page (<80 characters; use the extended description field for more detail).
|
||||
* Create a new branch so you can preview your new file and request a review via Pull Request.
|
46
_vendor/github.com/google/docsy/config.yaml
generated
Normal file
46
_vendor/github.com/google/docsy/config.yaml
generated
Normal file
|
@ -0,0 +1,46 @@
|
|||
# Docsy config
|
||||
#
|
||||
# cSpell:ignore docsy fortawesome fontawesome webfonts
|
||||
|
||||
params:
|
||||
time_format_blog: Monday, January 02, 2006
|
||||
time_format_default: January 2, 2006
|
||||
rss_sections: [blog]
|
||||
drawio:
|
||||
enable: true
|
||||
|
||||
outputFormats:
|
||||
PRINT:
|
||||
baseName: index
|
||||
isHTML: true
|
||||
mediaType: text/html
|
||||
path: _print
|
||||
permalinkable: false
|
||||
|
||||
module:
|
||||
hugoVersion:
|
||||
extended: true
|
||||
min: 0.73.0
|
||||
mounts:
|
||||
- source: assets
|
||||
target: assets
|
||||
- source: node_modules/bootstrap
|
||||
target: assets/vendor/bootstrap
|
||||
- source: node_modules/@fortawesome/fontawesome-free
|
||||
target: assets/vendor/Font-Awesome
|
||||
- source: i18n
|
||||
target: i18n
|
||||
- source: layouts
|
||||
target: layouts
|
||||
- source: static
|
||||
target: static
|
||||
- source: node_modules/@fortawesome/fontawesome-free/webfonts
|
||||
target: static/webfonts
|
||||
# Mounts for projects using Docsy as an NPM package. The source path prefix
|
||||
# "../.." moves out of themes/docsy so that Docsy can find its dependencies.
|
||||
- source: ../../node_modules/bootstrap
|
||||
target: assets/vendor/bootstrap
|
||||
- source: ../../node_modules/@fortawesome/fontawesome-free
|
||||
target: assets/vendor/Font-Awesome
|
||||
- source: ../../node_modules/@fortawesome/fontawesome-free/webfonts
|
||||
target: static/webfonts
|
2
_vendor/github.com/google/docsy/dependencies/assets/bootstrap/README.txt
generated
Normal file
2
_vendor/github.com/google/docsy/dependencies/assets/bootstrap/README.txt
generated
Normal file
|
@ -0,0 +1,2 @@
|
|||
This folder was added in order to work around a known bug in Go’s module management.
|
||||
For details, please refer to: https://github.com/golang/go/issues/37397
|
3
_vendor/github.com/google/docsy/dependencies/assets/bootstrap/scss/_vendor/README.txt
generated
Normal file
3
_vendor/github.com/google/docsy/dependencies/assets/bootstrap/scss/_vendor/README.txt
generated
Normal file
|
@ -0,0 +1,3 @@
|
|||
This file belongs to bootstrap framework:
|
||||
|
||||
https://raw.githubusercontent.com/twbs/bootstrap/v4.6.1/scss/vendor/_rfs.scss
|
228
_vendor/github.com/google/docsy/dependencies/assets/bootstrap/scss/_vendor/_rfs.scss
generated
Normal file
228
_vendor/github.com/google/docsy/dependencies/assets/bootstrap/scss/_vendor/_rfs.scss
generated
Normal file
|
@ -0,0 +1,228 @@
|
|||
// stylelint-disable property-blacklist, scss/dollar-variable-default
|
||||
|
||||
// SCSS RFS mixin
|
||||
//
|
||||
// Automated responsive font sizes
|
||||
//
|
||||
// Licensed under MIT (https://github.com/twbs/rfs/blob/v8.x/LICENSE)
|
||||
|
||||
// Configuration
|
||||
|
||||
// Base font size
|
||||
$rfs-base-font-size: 1.25rem !default;
|
||||
$rfs-font-size-unit: rem !default;
|
||||
|
||||
@if $rfs-font-size-unit != rem and $rfs-font-size-unit != px {
|
||||
@error "`#{$rfs-font-size-unit}` is not a valid unit for $rfs-font-size-unit. Use `px` or `rem`.";
|
||||
}
|
||||
|
||||
// Breakpoint at where font-size starts decreasing if screen width is smaller
|
||||
$rfs-breakpoint: 1200px !default;
|
||||
$rfs-breakpoint-unit: px !default;
|
||||
|
||||
@if $rfs-breakpoint-unit != px and $rfs-breakpoint-unit != em and $rfs-breakpoint-unit != rem {
|
||||
@error "`#{$rfs-breakpoint-unit}` is not a valid unit for $rfs-breakpoint-unit. Use `px`, `em` or `rem`.";
|
||||
}
|
||||
|
||||
// Resize font size based on screen height and width
|
||||
$rfs-two-dimensional: false !default;
|
||||
|
||||
// Factor of decrease
|
||||
$rfs-factor: 10 !default;
|
||||
|
||||
@if type-of($rfs-factor) != "number" or $rfs-factor <= 1 {
|
||||
@error "`#{$rfs-factor}` is not a valid $rfs-factor, it must be greater than 1.";
|
||||
}
|
||||
|
||||
// Generate enable or disable classes. Possibilities: false, "enable" or "disable"
|
||||
$rfs-class: false !default;
|
||||
|
||||
// 1 rem = $rfs-rem-value px
|
||||
$rfs-rem-value: 16 !default;
|
||||
|
||||
// Safari iframe resize bug: https://github.com/twbs/rfs/issues/14
|
||||
$rfs-safari-iframe-resize-bug-fix: false !default;
|
||||
|
||||
// Disable RFS by setting $enable-responsive-font-sizes to false
|
||||
$enable-responsive-font-sizes: true !default;
|
||||
|
||||
// Cache $rfs-base-font-size unit
|
||||
$rfs-base-font-size-unit: unit($rfs-base-font-size);
|
||||
|
||||
@function divide($dividend, $divisor, $precision: 10) {
|
||||
$sign: if($dividend > 0 and $divisor > 0 or $dividend < 0 and $divisor < 0, 1, -1);
|
||||
$dividend: abs($dividend);
|
||||
$divisor: abs($divisor);
|
||||
@if $dividend == 0 {
|
||||
@return 0;
|
||||
}
|
||||
@if $divisor == 0 {
|
||||
@error "Cannot divide by 0";
|
||||
}
|
||||
$remainder: $dividend;
|
||||
$result: 0;
|
||||
$factor: 10;
|
||||
@while ($remainder > 0 and $precision >= 0) {
|
||||
$quotient: 0;
|
||||
@while ($remainder >= $divisor) {
|
||||
$remainder: $remainder - $divisor;
|
||||
$quotient: $quotient + 1;
|
||||
}
|
||||
$result: $result * 10 + $quotient;
|
||||
$factor: $factor * .1;
|
||||
$remainder: $remainder * 10;
|
||||
$precision: $precision - 1;
|
||||
@if ($precision < 0 and $remainder >= $divisor * 5) {
|
||||
$result: $result + 1;
|
||||
}
|
||||
}
|
||||
$result: $result * $factor * $sign;
|
||||
$dividend-unit: unit($dividend);
|
||||
$divisor-unit: unit($divisor);
|
||||
$unit-map: (
|
||||
"px": 1px,
|
||||
"rem": 1rem,
|
||||
"em": 1em,
|
||||
"%": 1%
|
||||
);
|
||||
@if ($dividend-unit != $divisor-unit and map-has-key($unit-map, $dividend-unit)) {
|
||||
$result: $result * map-get($unit-map, $dividend-unit);
|
||||
}
|
||||
@return $result;
|
||||
}
|
||||
|
||||
// Remove px-unit from $rfs-base-font-size for calculations
|
||||
@if $rfs-base-font-size-unit == "px" {
|
||||
$rfs-base-font-size: divide($rfs-base-font-size, $rfs-base-font-size * 0 + 1);
|
||||
}
|
||||
@else if $rfs-base-font-size-unit == "rem" {
|
||||
$rfs-base-font-size: divide($rfs-base-font-size, divide($rfs-base-font-size * 0 + 1, $rfs-rem-value));
|
||||
}
|
||||
|
||||
// Cache $rfs-breakpoint unit to prevent multiple calls
|
||||
$rfs-breakpoint-unit-cache: unit($rfs-breakpoint);
|
||||
|
||||
// Remove unit from $rfs-breakpoint for calculations
|
||||
@if $rfs-breakpoint-unit-cache == "px" {
|
||||
$rfs-breakpoint: divide($rfs-breakpoint, $rfs-breakpoint * 0 + 1);
|
||||
}
|
||||
@else if $rfs-breakpoint-unit-cache == "rem" or $rfs-breakpoint-unit-cache == "em" {
|
||||
$rfs-breakpoint: divide($rfs-breakpoint, divide($rfs-breakpoint * 0 + 1, $rfs-rem-value));
|
||||
}
|
||||
|
||||
// Internal mixin that adds disable classes to the selector if needed.
|
||||
@mixin _rfs-disable-class {
|
||||
@if $rfs-class == "disable" {
|
||||
// Adding an extra class increases specificity, which prevents the media query to override the font size
|
||||
&,
|
||||
.disable-responsive-font-size &,
|
||||
&.disable-responsive-font-size {
|
||||
@content;
|
||||
}
|
||||
}
|
||||
@else {
|
||||
@content;
|
||||
}
|
||||
}
|
||||
|
||||
// Internal mixin that adds enable classes to the selector if needed.
|
||||
@mixin _rfs-enable-class {
|
||||
@if $rfs-class == "enable" {
|
||||
.enable-responsive-font-size &,
|
||||
&.enable-responsive-font-size {
|
||||
@content;
|
||||
}
|
||||
}
|
||||
@else {
|
||||
@content;
|
||||
}
|
||||
}
|
||||
|
||||
// Internal mixin used to determine which media query needs to be used
|
||||
@mixin _rfs-media-query($mq-value) {
|
||||
@if $rfs-two-dimensional {
|
||||
@media (max-width: #{$mq-value}), (max-height: #{$mq-value}) {
|
||||
@content;
|
||||
}
|
||||
}
|
||||
@else {
|
||||
@media (max-width: #{$mq-value}) {
|
||||
@content;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
// Responsive font size mixin
|
||||
@mixin rfs($fs, $important: false) {
|
||||
// Cache $fs unit
|
||||
$fs-unit: if(type-of($fs) == "number", unit($fs), false);
|
||||
|
||||
// Add !important suffix if needed
|
||||
$rfs-suffix: if($important, " !important", "");
|
||||
|
||||
// If $fs isn't a number (like inherit) or $fs has a unit (not px or rem, like 1.5em) or $ is 0, just print the value
|
||||
@if not $fs-unit or $fs-unit != "" and $fs-unit != "px" and $fs-unit != "rem" or $fs == 0 {
|
||||
font-size: #{$fs}#{$rfs-suffix};
|
||||
}
|
||||
@else {
|
||||
// Remove unit from $fs for calculations
|
||||
@if $fs-unit == "px" {
|
||||
$fs: divide($fs, $fs * 0 + 1);
|
||||
}
|
||||
@else if $fs-unit == "rem" {
|
||||
$fs: divide($fs, divide($fs * 0 + 1, $rfs-rem-value));
|
||||
}
|
||||
|
||||
// Set default font size
|
||||
$rfs-static: if($rfs-font-size-unit == rem, #{divide($fs, $rfs-rem-value)}rem, #{$fs}px);
|
||||
|
||||
// Only add the media query if the font size is bigger than the minimum font size
|
||||
@if $fs <= $rfs-base-font-size or not $enable-responsive-font-sizes {
|
||||
font-size: #{$rfs-static}#{$rfs-suffix};
|
||||
}
|
||||
@else {
|
||||
// Calculate the minimum font size for $fs
|
||||
$fs-min: $rfs-base-font-size + divide($fs - $rfs-base-font-size, $rfs-factor);
|
||||
|
||||
// Calculate difference between $fs and the minimum font size
|
||||
$fs-diff: $fs - $fs-min;
|
||||
|
||||
// Base font-size formatting
|
||||
$min-width: if($rfs-font-size-unit == rem, #{divide($fs-min, $rfs-rem-value)}rem, #{$fs-min}px);
|
||||
|
||||
// Use `vmin` if two-dimensional is enabled
|
||||
$variable-unit: if($rfs-two-dimensional, vmin, vw);
|
||||
|
||||
// Calculate the variable width between 0 and $rfs-breakpoint
|
||||
$variable-width: #{divide($fs-diff * 100, $rfs-breakpoint)}#{$variable-unit};
|
||||
|
||||
// Set the calculated font-size
|
||||
$rfs-fluid: calc(#{$min-width} + #{$variable-width}) #{$rfs-suffix};
|
||||
|
||||
// Breakpoint formatting
|
||||
$mq-value: if($rfs-breakpoint-unit == px, #{$rfs-breakpoint}px, #{divide($rfs-breakpoint, $rfs-rem-value)}#{$rfs-breakpoint-unit});
|
||||
|
||||
@include _rfs-disable-class {
|
||||
font-size: #{$rfs-static}#{$rfs-suffix};
|
||||
}
|
||||
|
||||
@include _rfs-media-query($mq-value) {
|
||||
@include _rfs-enable-class {
|
||||
font-size: $rfs-fluid;
|
||||
}
|
||||
|
||||
// Include safari iframe resize fix if needed
|
||||
min-width: if($rfs-safari-iframe-resize-bug-fix, (0 * 1vw), null);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
// The font-size & responsive-font-size mixins use RFS to rescale the font size
|
||||
@mixin font-size($fs, $important: false) {
|
||||
@include rfs($fs, $important);
|
||||
}
|
||||
|
||||
@mixin responsive-font-size($fs, $important: false) {
|
||||
@include rfs($fs, $important);
|
||||
}
|
42
_vendor/github.com/google/docsy/dependencies/config.toml
generated
Normal file
42
_vendor/github.com/google/docsy/dependencies/config.toml
generated
Normal file
|
@ -0,0 +1,42 @@
|
|||
[module]
|
||||
_merge = "deep"
|
||||
# work around https://github.com/golang/go/issues/37397
|
||||
[[module.mounts]]
|
||||
source = "assets/bootstrap/scss/_vendor"
|
||||
target = "assets/vendor/bootstrap/scss/vendor"
|
||||
# mount asserts directory
|
||||
[[module.mounts]]
|
||||
source = "assets"
|
||||
target = "assets"
|
||||
# mount i18n directory
|
||||
[[module.mounts]]
|
||||
source = "i18n"
|
||||
target = "i18n"
|
||||
# mount layouts directory
|
||||
[[module.mounts]]
|
||||
source = "layouts"
|
||||
target = "layouts"
|
||||
# mount static directory
|
||||
[[module.mounts]]
|
||||
source = "static"
|
||||
target = "static"
|
||||
# Dependencies are brought in as modules
|
||||
# and mount points are declared
|
||||
[[module.imports]]
|
||||
path = "github.com/twbs/bootstrap"
|
||||
disable = false
|
||||
[[module.imports.mounts]]
|
||||
source = "scss"
|
||||
target = "assets/vendor/bootstrap/scss"
|
||||
[[module.imports.mounts]]
|
||||
source = "dist/js"
|
||||
target = "assets/vendor/bootstrap/dist/js"
|
||||
[[module.imports]]
|
||||
path = "github.com/FortAwesome/Font-Awesome"
|
||||
disable = false
|
||||
[[module.imports.mounts]]
|
||||
source = "scss"
|
||||
target = "assets/vendor/Font-Awesome/scss"
|
||||
[[module.imports.mounts]]
|
||||
source = "webfonts"
|
||||
target = "static/webfonts"
|
75
_vendor/github.com/google/docsy/i18n/ar.toml
generated
Normal file
75
_vendor/github.com/google/docsy/i18n/ar.toml
generated
Normal file
|
@ -0,0 +1,75 @@
|
|||
# UI strings. Buttons and similar.
|
||||
|
||||
[ui_pager_prev]
|
||||
other = "السابق"
|
||||
|
||||
[ui_pager_next]
|
||||
other = "التالي"
|
||||
|
||||
[ui_read_more]
|
||||
other = "إقرأ المزيد"
|
||||
|
||||
[ui_search]
|
||||
other = "ابحث في هذا الموقع"
|
||||
|
||||
# Used in sentences such as "Posted in News"
|
||||
[ui_in]
|
||||
other = "في"
|
||||
|
||||
# Footer text
|
||||
[footer_all_rights_reserved]
|
||||
other = "كافة الحقوق محفوظة"
|
||||
|
||||
[footer_privacy_policy]
|
||||
other = "سياسة الخصوصية"
|
||||
|
||||
|
||||
# Post (blog, articles etc.)
|
||||
[post_byline_by]
|
||||
other = "الكاتب"
|
||||
[post_created]
|
||||
other = "منشئة"
|
||||
[post_last_mod]
|
||||
other = "اخر تعديل"
|
||||
[post_edit_this]
|
||||
other = "عدل هذه الصفحة"
|
||||
[post_create_child_page]
|
||||
other = " أنشئ صفحة فرعية"
|
||||
[post_create_issue]
|
||||
other = "أنشئ مسألة حول الوثائق"
|
||||
[post_create_project_issue]
|
||||
other = "أنشئ مسألة حول المشروع"
|
||||
[post_posts_in]
|
||||
other = "منشور في"
|
||||
[post_reading_time]
|
||||
other = "minute read"
|
||||
[post_less_than_a_minute_read]
|
||||
other = "less than a minute"
|
||||
|
||||
# Print support
|
||||
[print_printable_section]
|
||||
other = "هذا العرض يتضمن عدة صفحات للطباعة ضمن هذا القسم."
|
||||
[print_click_to_print]
|
||||
other = "اضغط هنا للطباعة"
|
||||
[print_show_regular]
|
||||
other = "العودة للعرض العادي"
|
||||
[print_entire_section]
|
||||
other = "اطبع القسم كاملا"
|
||||
|
||||
# Community
|
||||
[community_join]
|
||||
other = "Join the {{ .Site.Title }} community"
|
||||
[community_introduce]
|
||||
other = "{{ .Site.Title }} is an open source project that anyone in the community can use, improve, and enjoy. We'd love you to join us! Here's a few ways to find out what's happening and get involved."
|
||||
[community_learn]
|
||||
other = "Learn and Connect"
|
||||
[community_using]
|
||||
other = "Using or want to use {{ .Site.Title }}? Find out more here:"
|
||||
[community_develop]
|
||||
other = "Develop and Contribute"
|
||||
[community_contribute]
|
||||
other = "If you want to get more involved by contributing to {{ .Site.Title }}, join us here:"
|
||||
[community_how_to]
|
||||
other = "You can find out how to contribute to {{ .Site.Title }} in our"
|
||||
[community_guideline]
|
||||
other = "Contribution Guidelines"
|
77
_vendor/github.com/google/docsy/i18n/bg.toml
generated
Normal file
77
_vendor/github.com/google/docsy/i18n/bg.toml
generated
Normal file
|
@ -0,0 +1,77 @@
|
|||
|
||||
|
||||
# UI strings. Buttons and similar.
|
||||
|
||||
[ui_pager_prev]
|
||||
other = "Предишен"
|
||||
|
||||
[ui_pager_next]
|
||||
other = "Следващ"
|
||||
|
||||
[ui_read_more]
|
||||
other = "Прочети повече"
|
||||
|
||||
[ui_search]
|
||||
other = "Търси в тази страница…"
|
||||
|
||||
# Used in sentences such as "Posted in News"
|
||||
[ui_in]
|
||||
other = "в"
|
||||
|
||||
# Footer text
|
||||
[footer_all_rights_reserved]
|
||||
other = "Всички права запазени!"
|
||||
|
||||
[footer_privacy_policy]
|
||||
other = "Политика за поверителност"
|
||||
|
||||
|
||||
# Post (blog, articles etc.)
|
||||
[post_byline_by]
|
||||
other = "От"
|
||||
[post_created]
|
||||
other = "Създаден"
|
||||
[post_last_mod]
|
||||
other = "Последна промяна"
|
||||
[post_edit_this]
|
||||
other = "Промени тази страница"
|
||||
[post_create_child_page]
|
||||
other = "Създай дъщерна страница"
|
||||
[post_create_issue]
|
||||
other = "Създаване на издаване на документ"
|
||||
[post_create_project_issue]
|
||||
other = "Създаване на издаване на проект"
|
||||
[post_posts_in]
|
||||
other = "Публикувано в"
|
||||
[post_reading_time]
|
||||
other = "minute read"
|
||||
[post_less_than_a_minute_read]
|
||||
other = "less than a minute"
|
||||
|
||||
# Print support
|
||||
[print_printable_section]
|
||||
other = "Изглед за печат на този раздел, в режим много страници"
|
||||
[print_click_to_print]
|
||||
other = "Натисни тук за отпечатване"
|
||||
[print_show_regular]
|
||||
other = "Върнете се към обичайния изглед на тази страница"
|
||||
[print_entire_section]
|
||||
other = "Отпечатайте цялата секция"
|
||||
|
||||
# Community
|
||||
[community_join]
|
||||
other = "Join the {{ .Site.Title }} community"
|
||||
[community_introduce]
|
||||
other = "{{ .Site.Title }} is an open source project that anyone in the community can use, improve, and enjoy. We'd love you to join us! Here's a few ways to find out what's happening and get involved."
|
||||
[community_learn]
|
||||
other = "Learn and Connect"
|
||||
[community_using]
|
||||
other = "Using or want to use {{ .Site.Title }}? Find out more here:"
|
||||
[community_develop]
|
||||
other = "Develop and Contribute"
|
||||
[community_contribute]
|
||||
other = "If you want to get more involved by contributing to {{ .Site.Title }}, join us here:"
|
||||
[community_how_to]
|
||||
other = "You can find out how to contribute to {{ .Site.Title }} in our"
|
||||
[community_guideline]
|
||||
other = "Contribution Guidelines"
|
81
_vendor/github.com/google/docsy/i18n/bn.toml
generated
Normal file
81
_vendor/github.com/google/docsy/i18n/bn.toml
generated
Normal file
|
@ -0,0 +1,81 @@
|
|||
# ইউআই স্ট্রিং বাটন এবং অনুরূপ।
|
||||
|
||||
[ui_pager_prev]
|
||||
other = "পূর্ববর্তী"
|
||||
|
||||
[ui_pager_next]
|
||||
other = "পরবর্তী"
|
||||
|
||||
[ui_read_more]
|
||||
other = "আরও পড়ুন"
|
||||
|
||||
[ui_search]
|
||||
other = "এই সাইটে খোঁজ করুন…"
|
||||
|
||||
# "পোস্ট করা নিউজ" এর মতো বাক্যে ব্যবহৃত
|
||||
[ui_in]
|
||||
other = "মধ্যে"
|
||||
|
||||
# Used in sentences such as "All Tags"
|
||||
[ui_all]
|
||||
other = "সব"
|
||||
|
||||
# পাদচরণ
|
||||
[footer_all_rights_reserved]
|
||||
other = "সমস্ত অধিকার সংরক্ষিত"
|
||||
|
||||
[footer_privacy_policy]
|
||||
other = "গোপনীয়তা নীতি"
|
||||
|
||||
|
||||
# পোস্ট (ব্লগ, নিবন্ধ ইত্যাদি)
|
||||
[post_byline_by]
|
||||
other = "দ্বারা"
|
||||
[post_created]
|
||||
other = "তৈরি"
|
||||
[post_last_mod]
|
||||
other = "সর্বশেষ পরিবর্তিত"
|
||||
[post_edit_this]
|
||||
other = "এই পৃষ্ঠাটি সম্পাদনা করুন"
|
||||
[post_view_this]
|
||||
other = "পৃষ্ঠার উৎস দেখুন"
|
||||
[post_create_child_page]
|
||||
other = "শাখা পৃষ্ঠা তৈরি করুন"
|
||||
[post_create_issue]
|
||||
other = "ডকুমেন্টেশন ইস্যু তৈরি করুন"
|
||||
[post_create_project_issue]
|
||||
other = "প্রকল্পের সমস্যা তৈরি করুন"
|
||||
[post_posts_in]
|
||||
other = "পোস্ট"
|
||||
[post_reading_time]
|
||||
other = "পড়তে এক মিনিট"
|
||||
[post_less_than_a_minute_read]
|
||||
other = "পড়তে এক মিনিটেরও কম সময় লাগবে"
|
||||
|
||||
# মুদ্রণ সমর্থন
|
||||
[print_printable_section]
|
||||
other = "এটি এই বিভাগটির বহু পৃষ্ঠার মুদ্রণযোগ্য দর্শন।"
|
||||
[print_click_to_print]
|
||||
other = "মুদ্রণ করতে এখানে ক্লিক করুন"
|
||||
[print_show_regular]
|
||||
other = "এই পৃষ্ঠার নিয়মিত দৃশ্যে ফিরে আসুন"
|
||||
[print_entire_section]
|
||||
other = "পুরো বিভাগ মুদ্রণ করুন"
|
||||
|
||||
# Community
|
||||
[community_join]
|
||||
other = "যোগদান করুন {{ .Site.Title }} সম্প্রদায়ে"
|
||||
[community_introduce]
|
||||
other = "{{ .Site.Title }} হল একটি ওপেন সোর্স প্রকল্প যা সম্প্রদায়ের যে কেউ ব্যবহার করতে, উন্নতি করতে এবং উপভোগ করতে পারে৷ আমরা আপনাকে আমাদের সাথে দেখতে আনন্দিত হবে! এখানে আমাদের সাথে যোগ দেওয়ার কিছু উপায় রয়েছে, কী ঘটছে তা জানুন এবং জড়িত হন৷"
|
||||
[community_learn]
|
||||
other = "শিখুন এবং যোগদান করুন"
|
||||
[community_using]
|
||||
other = "ইতিমধ্যে {{ .Site.Title }} ব্যবহার করছেন বা ব্যবহার করতে চান? ? এখানে আরো জানুন:"
|
||||
[community_develop]
|
||||
other = "বিকাশ এবং অবদান"
|
||||
[community_contribute]
|
||||
other = "আপনি যদি {{ .Site.Title }} এ অবদান রেখে আরও জড়িত হতে চান, তবে এখানে আমাদের সাথে যোগ দিন:"
|
||||
[community_how_to]
|
||||
other = "আপনি আমাদের এ এই নথিগুলিতে কীভাবে অবদান রাখবেন তা খুঁজে পেতে পারেন"
|
||||
[community_guideline]
|
||||
other = "অবদান নির্দেশিকা"
|
81
_vendor/github.com/google/docsy/i18n/de.toml
generated
Normal file
81
_vendor/github.com/google/docsy/i18n/de.toml
generated
Normal file
|
@ -0,0 +1,81 @@
|
|||
# UI strings. Buttons and similar.
|
||||
|
||||
[ui_pager_prev]
|
||||
other = "Zurück"
|
||||
|
||||
[ui_pager_next]
|
||||
other = "Weiter"
|
||||
|
||||
[ui_read_more]
|
||||
other = "Weiterlesen"
|
||||
|
||||
[ui_search]
|
||||
other = "Diese Seite durchsuchen…"
|
||||
|
||||
# Used in sentences such as "Posted in News"
|
||||
[ui_in]
|
||||
other = "in"
|
||||
|
||||
# Used in sentences such as "All Tags"
|
||||
[ui_all]
|
||||
other = "alle"
|
||||
|
||||
# Footer text
|
||||
[footer_all_rights_reserved]
|
||||
other = "Alle Rechte vorbehalten"
|
||||
|
||||
[footer_privacy_policy]
|
||||
other = "Datenschutzrichtlinie"
|
||||
|
||||
|
||||
# Post (blog, articles etc.)
|
||||
[post_byline_by]
|
||||
other = "Von"
|
||||
[post_created]
|
||||
other = "Erstellt"
|
||||
[post_last_mod]
|
||||
other = "Zuletzt geändert"
|
||||
[post_edit_this]
|
||||
other = "Diese Seite bearbeiten"
|
||||
[post_view_this]
|
||||
other = "Quellcode dieser Seite ansehen"
|
||||
[post_create_child_page]
|
||||
other = "Unterseite anlegen"
|
||||
[post_create_issue]
|
||||
other = "Problem zu dieser Seite melden"
|
||||
[post_create_project_issue]
|
||||
other = "Problem melden"
|
||||
[post_posts_in]
|
||||
other = "Einträge in"
|
||||
[post_reading_time]
|
||||
other = "Minuten Lesezeit"
|
||||
[post_less_than_a_minute_read]
|
||||
other = "weniger als eine Minute"
|
||||
|
||||
# Print support
|
||||
[print_printable_section]
|
||||
other = "Das ist eine für den Ausdruck optimierte Ansicht des gesamten Kapitels inkl. Unterseiten."
|
||||
[print_click_to_print]
|
||||
other = "Druckvorgang starten"
|
||||
[print_show_regular]
|
||||
other = "Zur Standardansicht zurückkehren"
|
||||
[print_entire_section]
|
||||
other = "Kapitel inkl. Unterseiten drucken"
|
||||
|
||||
# Community
|
||||
[community_join]
|
||||
other = "Werde Teil der {{ .Site.Title }} Community"
|
||||
[community_introduce]
|
||||
other = "{{ .Site.Title }} ist ein Open Source Projekt das jedes Mitglied der Community nutzen, verbessern und genießen kann. Wir würden uns freuen, wenn Du Dich an unserem Projekt beteiligst! Nachfolgend werden einige Wege beschrieben um herauszufinden, was gerade in unserem Projekt los ist und wie Du dich aktiv beteiligen kannst."
|
||||
[community_learn]
|
||||
other = "Lerne und verbinde"
|
||||
[community_using]
|
||||
other = "Anwenden oder Anwendung eruieren {{ .Site.Title }}, Weitere Infos findest Du hier:"
|
||||
[community_develop]
|
||||
other = "Entwickeln und einen Beitrag leisten"
|
||||
[community_contribute]
|
||||
other = "Wenn Du aktiv beteiligen und einen Beitrag zu {{ .Site.Title }} leisten möchtest, kannst Du hier mitmachen:"
|
||||
[community_how_to]
|
||||
other = "Wie Du selbst zu {{ .Site.Title }} beitragen kannst, kannst Du nachlesen in unseren"
|
||||
[community_guideline]
|
||||
other = "Richtlinien für Beiträge"
|
81
_vendor/github.com/google/docsy/i18n/en.toml
generated
Normal file
81
_vendor/github.com/google/docsy/i18n/en.toml
generated
Normal file
|
@ -0,0 +1,81 @@
|
|||
# UI strings. Buttons and similar.
|
||||
|
||||
[ui_pager_prev]
|
||||
other = "Previous"
|
||||
|
||||
[ui_pager_next]
|
||||
other = "Next"
|
||||
|
||||
[ui_read_more]
|
||||
other = "Read more"
|
||||
|
||||
[ui_search]
|
||||
other = "Search this site…"
|
||||
|
||||
# Used in sentences such as "Posted in News"
|
||||
[ui_in]
|
||||
other = "in"
|
||||
|
||||
# Used in sentences such as "All Tags"
|
||||
[ui_all]
|
||||
other = "all"
|
||||
|
||||
# Footer text
|
||||
[footer_all_rights_reserved]
|
||||
other = "All Rights Reserved"
|
||||
|
||||
[footer_privacy_policy]
|
||||
other = "Privacy Policy"
|
||||
|
||||
|
||||
# Post (blog, articles etc.)
|
||||
[post_byline_by]
|
||||
other = "By"
|
||||
[post_created]
|
||||
other = "Created"
|
||||
[post_last_mod]
|
||||
other = "Last modified"
|
||||
[post_edit_this]
|
||||
other = "Edit this page"
|
||||
[post_view_this]
|
||||
other = "View page source"
|
||||
[post_create_child_page]
|
||||
other = "Create child page"
|
||||
[post_create_issue]
|
||||
other = "Create documentation issue"
|
||||
[post_create_project_issue]
|
||||
other = "Create project issue"
|
||||
[post_posts_in]
|
||||
other = "Posts in"
|
||||
[post_reading_time]
|
||||
other = "minute read"
|
||||
[post_less_than_a_minute_read]
|
||||
other = "less than a minute"
|
||||
|
||||
# Print support
|
||||
[print_printable_section]
|
||||
other = "This is the multi-page printable view of this section."
|
||||
[print_click_to_print]
|
||||
other = "Click here to print"
|
||||
[print_show_regular]
|
||||
other = "Return to the regular view of this page"
|
||||
[print_entire_section]
|
||||
other = "Print entire section"
|
||||
|
||||
# Community
|
||||
[community_join]
|
||||
other = "Join the {{ .Site.Title }} community"
|
||||
[community_introduce]
|
||||
other = "{{ .Site.Title }} is an open source project that anyone in the community can use, improve, and enjoy. We'd love you to join us! Here's a few ways to find out what's happening and get involved."
|
||||
[community_learn]
|
||||
other = "Learn and Connect"
|
||||
[community_using]
|
||||
other = "Using or want to use {{ .Site.Title }}? Find out more here:"
|
||||
[community_develop]
|
||||
other = "Develop and Contribute"
|
||||
[community_contribute]
|
||||
other = "If you want to get more involved by contributing to {{ .Site.Title }}, join us here:"
|
||||
[community_how_to]
|
||||
other = "You can find out how to contribute to {{ .Site.Title }} in our"
|
||||
[community_guideline]
|
||||
other = "Contribution Guidelines"
|
81
_vendor/github.com/google/docsy/i18n/es.toml
generated
Normal file
81
_vendor/github.com/google/docsy/i18n/es.toml
generated
Normal file
|
@ -0,0 +1,81 @@
|
|||
# UI strings. Botones y similares.
|
||||
|
||||
[ui_pager_prev]
|
||||
other = "Previo"
|
||||
|
||||
[ui_pager_next]
|
||||
other = "Siguiente"
|
||||
|
||||
[ui_read_more]
|
||||
other = "Contiuar leyendo"
|
||||
|
||||
[ui_search]
|
||||
other = "Buscar"
|
||||
|
||||
# Used in sentences such as "Posted in News"
|
||||
[ui_in]
|
||||
other = "en"
|
||||
|
||||
# Used in sentences such as "All Tags"
|
||||
[ui_all]
|
||||
other = "todos"
|
||||
|
||||
# Footer text
|
||||
[footer_all_rights_reserved]
|
||||
other = "Derechos reservados"
|
||||
|
||||
[footer_privacy_policy]
|
||||
other = "Política de privacidad"
|
||||
|
||||
|
||||
# Post (blog, articles etc.)
|
||||
[post_byline_by]
|
||||
other = "Por"
|
||||
[post_created]
|
||||
other = "Creado"
|
||||
[post_last_mod]
|
||||
other = "Última modificación"
|
||||
[post_edit_this]
|
||||
other = "Editar esta página"
|
||||
[post_view_this]
|
||||
other = "Ver código de la página"
|
||||
[post_create_child_page]
|
||||
other = "Crear página nueva"
|
||||
[post_create_issue]
|
||||
other = "Notificar una incidencia con la documentanción"
|
||||
[post_create_project_issue]
|
||||
other = "Notificar una incidencia en un proyecto"
|
||||
[post_posts_in]
|
||||
other = "Publicaciones en"
|
||||
[post_reading_time]
|
||||
other = "minutos de lectura"
|
||||
[post_less_than_a_minute_read]
|
||||
other = "menos de un minuto"
|
||||
|
||||
# Print support
|
||||
[print_printable_section]
|
||||
other = "Versión imprimible multipagina."
|
||||
[print_click_to_print]
|
||||
other = "Haga click aquí para imprimir"
|
||||
[print_show_regular]
|
||||
other = "Volver a la vista normal de esta página"
|
||||
[print_entire_section]
|
||||
other = "Imprimir la sección entera"
|
||||
|
||||
# Community
|
||||
[community_join]
|
||||
other = "Únete a la comunidad {{ .Site.Title }}"
|
||||
[community_introduce]
|
||||
other = "{{ .Site.Title }} es un proyecto de código abierto que cualquiera en la comunidad puede usar, mejorar y disfrutar. ¡Nos encantaría que te unas a nosotros! Aquí hay algunas maneras de averiguar lo que está sucediendo y participar."
|
||||
[community_learn]
|
||||
other = "Aprende y Conéctate"
|
||||
[community_using]
|
||||
other = "¿Usas o quieres usar {{ .Site.Title }}? Encuentra más información aquí:"
|
||||
[community_develop]
|
||||
other = "Desarrollar y Contribuir"
|
||||
[community_contribute]
|
||||
other = "Si deseas involucrarte más contribuyendo a {{ .Site.Title }}, únete a nosotros aquí:"
|
||||
[community_how_to]
|
||||
other = "Puedes averiguar cómo contribuir a {{ .Site.Title }} en nuestras"
|
||||
[community_guideline]
|
||||
other = "Guias de Contribución"
|
66
_vendor/github.com/google/docsy/i18n/et.toml
generated
Normal file
66
_vendor/github.com/google/docsy/i18n/et.toml
generated
Normal file
|
@ -0,0 +1,66 @@
|
|||
|
||||
# Translation into Estonian
|
||||
# UI strings. Buttons and similar.
|
||||
|
||||
[ui_pager_prev]
|
||||
other = "Eelmine"
|
||||
|
||||
[ui_pager_next]
|
||||
other = "Järgmine"
|
||||
|
||||
[ui_read_more]
|
||||
other = "Loe lähemalt"
|
||||
|
||||
[ui_search]
|
||||
other = "Otsi lehelt…"
|
||||
|
||||
# Used in sentences such as "Posted in News"
|
||||
[ui_in]
|
||||
other = "kohas" # not perfect. In Estonian this idea is represented by a suffix, not a separate word.
|
||||
|
||||
# Footer text
|
||||
[footer_all_rights_reserved]
|
||||
other = "Kõik õigused kaitstud"
|
||||
|
||||
[footer_privacy_policy]
|
||||
other = "Privaatsuspoliitika"
|
||||
|
||||
# Post (blog, articles etc.)
|
||||
[post_byline_by]
|
||||
other = "järgi" # not perfect. In Estonian this idea is represented by a suffix, not a separate word.
|
||||
[post_created]
|
||||
other = "Loodud"
|
||||
[post_last_mod]
|
||||
other = "Viimati muudetud"
|
||||
[post_edit_this]
|
||||
other = "Täienda lehte"
|
||||
[post_create_child_page]
|
||||
other = "Loo alamleht"
|
||||
[post_create_issue]
|
||||
other = "Tõstata dokumentatsiooni kohta ülesanne" # perhaps there is a better translation for "issue"...
|
||||
[post_create_project_issue]
|
||||
other = "Tõstata projekti kohta ülesanne"
|
||||
[post_posts_in]
|
||||
other = "Postitused" # in Estonian this "in" should be the suffix of the next word, cannot include it to that phrase.
|
||||
[post_reading_time]
|
||||
other = "minute read"
|
||||
[post_less_than_a_minute_read]
|
||||
other = "less than a minute"
|
||||
|
||||
# Community
|
||||
[community_join]
|
||||
other = "Join the {{ .Site.Title }} community"
|
||||
[community_introduce]
|
||||
other = "{{ .Site.Title }} is an open source project that anyone in the community can use, improve, and enjoy. We'd love you to join us! Here's a few ways to find out what's happening and get involved."
|
||||
[community_learn]
|
||||
other = "Learn and Connect"
|
||||
[community_using]
|
||||
other = "Using or want to use {{ .Site.Title }}? Find out more here:"
|
||||
[community_develop]
|
||||
other = "Develop and Contribute"
|
||||
[community_contribute]
|
||||
other = "If you want to get more involved by contributing to {{ .Site.Title }}, join us here:"
|
||||
[community_how_to]
|
||||
other = "You can find out how to contribute to {{ .Site.Title }} in our"
|
||||
[community_guideline]
|
||||
other = "Contribution Guidelines"
|
78
_vendor/github.com/google/docsy/i18n/fa.toml
generated
Normal file
78
_vendor/github.com/google/docsy/i18n/fa.toml
generated
Normal file
|
@ -0,0 +1,78 @@
|
|||
|
||||
|
||||
# UI strings. Buttons and similar.
|
||||
|
||||
[ui_pager_prev]
|
||||
other = "قبلی"
|
||||
|
||||
[ui_pager_next]
|
||||
other = "بعدی"
|
||||
|
||||
[ui_read_more]
|
||||
other = "بیشتر بخوانید"
|
||||
|
||||
[ui_search]
|
||||
other = "در این سایت جستجو کنید..."
|
||||
|
||||
# Used in sentences such as "Posted in News"
|
||||
[ui_in]
|
||||
other = "در"
|
||||
|
||||
# Footer text
|
||||
[footer_all_rights_reserved]
|
||||
other = "تمام حقوق محفوظ است."
|
||||
|
||||
[footer_privacy_policy]
|
||||
other = "سیاست حفظ حریم خصوصی"
|
||||
|
||||
|
||||
# Post (blog, articles etc.)
|
||||
[post_byline_by]
|
||||
other = "توسط"
|
||||
[post_created]
|
||||
other = "ساخته شده"
|
||||
[post_last_mod]
|
||||
other = "آخرین تغییرات"
|
||||
[post_edit_this]
|
||||
other = "این صفحه را ویرایش کنید"
|
||||
[post_create_child_page]
|
||||
other = "ایجاد زیر صفحه در این صفحه"
|
||||
[post_create_issue]
|
||||
other = "ساخت ایشو"
|
||||
[post_create_project_issue]
|
||||
other = "ساخت ایشو برای پوسته"
|
||||
[post_posts_in]
|
||||
other = "نوشته ها در"
|
||||
[post_reading_time]
|
||||
other = "دقیقه برای خواندن"
|
||||
[post_less_than_a_minute_read]
|
||||
other = "کمتر از یک دقیقه"
|
||||
|
||||
|
||||
# Print support
|
||||
[print_printable_section]
|
||||
other = "این حالت نمایش چند صفحه ای قابل پرینت این قسمت میباشد."
|
||||
[print_click_to_print]
|
||||
other = "برای پرینت کلیک کنید."
|
||||
[print_show_regular]
|
||||
other = "بازگشت به حالت نمایش عادی این قسمت"
|
||||
[print_entire_section]
|
||||
other = "پرینت کامل قسمت"
|
||||
|
||||
# Community
|
||||
[community_join]
|
||||
other = "Join the {{ .Site.Title }} community"
|
||||
[community_introduce]
|
||||
other = "{{ .Site.Title }} is an open source project that anyone in the community can use, improve, and enjoy. We'd love you to join us! Here's a few ways to find out what's happening and get involved."
|
||||
[community_learn]
|
||||
other = "Learn and Connect"
|
||||
[community_using]
|
||||
other = "Using or want to use {{ .Site.Title }}? Find out more here:"
|
||||
[community_develop]
|
||||
other = "Develop and Contribute"
|
||||
[community_contribute]
|
||||
other = "If you want to get more involved by contributing to {{ .Site.Title }}, join us here:"
|
||||
[community_how_to]
|
||||
other = "You can find out how to contribute to {{ .Site.Title }} in our"
|
||||
[community_guideline]
|
||||
other = "Contribution Guidelines"
|
79
_vendor/github.com/google/docsy/i18n/fr.toml
generated
Normal file
79
_vendor/github.com/google/docsy/i18n/fr.toml
generated
Normal file
|
@ -0,0 +1,79 @@
|
|||
|
||||
|
||||
# UI strings. Buttons and similar.
|
||||
|
||||
[ui_pager_prev]
|
||||
other = "Précédent"
|
||||
|
||||
[ui_pager_next]
|
||||
other = "Suivant"
|
||||
|
||||
[ui_read_more]
|
||||
other = "Lire plus"
|
||||
|
||||
[ui_search]
|
||||
other = "Rechercher"
|
||||
|
||||
# Used in sentences such as "Posted in News"
|
||||
[ui_in]
|
||||
other = "dans"
|
||||
|
||||
# Footer text
|
||||
[footer_all_rights_reserved]
|
||||
other = "Tous droits réservés"
|
||||
|
||||
[footer_privacy_policy]
|
||||
other = "Politique de confidentialité"
|
||||
|
||||
|
||||
# Post (blog, articles etc.)
|
||||
[post_byline_by]
|
||||
other = "Par"
|
||||
[post_created]
|
||||
other = "Créé"
|
||||
[post_last_mod]
|
||||
other = "Dernière modification"
|
||||
[post_edit_this]
|
||||
other = "Modifier cette page"
|
||||
[post_view_this]
|
||||
other = "Afficher la source de la page"
|
||||
[post_create_child_page]
|
||||
other = "Créer une page dans cette section"
|
||||
[post_create_issue]
|
||||
other = "Signaler un problème dans la documentation"
|
||||
[post_create_project_issue]
|
||||
other = "Signaler un problème dans le projet"
|
||||
[post_posts_in]
|
||||
other = "Articles dans"
|
||||
[post_reading_time]
|
||||
other = "minutes à lire"
|
||||
[post_less_than_a_minute_read]
|
||||
other = "Moins d'une minute à lire"
|
||||
|
||||
# Print support
|
||||
[print_printable_section]
|
||||
other = "Version imprimable multipages."
|
||||
[print_click_to_print]
|
||||
other = "Cliquer ici pour imprimer"
|
||||
[print_show_regular]
|
||||
other = "Retour à la version par défaut"
|
||||
[print_entire_section]
|
||||
other = "Imprimer la section entière"
|
||||
|
||||
# Community
|
||||
[community_join]
|
||||
other = "Rejoindre la communauté {{ .Site.Title }}"
|
||||
[community_introduce]
|
||||
other = "{{ .Site.Title }} est un projet en source ouverte. Toute la communauté peut l'utiliser, l'améliorer et en bénéficier. Rejoignez nous ! Voilà quelques moyens d'être au courant de ce qui se passe et de contribuer."
|
||||
[community_learn]
|
||||
other = "Apprendre et se connecter"
|
||||
[community_using]
|
||||
other = "Vous utilisez ou voulez utiliser {{ .Site.Title }} ? En savoir plus:"
|
||||
[community_develop]
|
||||
other = "Développer et Contribuer"
|
||||
[community_contribute]
|
||||
other = "Si vous voulez vous impliquer davantage en contribuant à {{ .Site.Title }}, joignez-nous sur:"
|
||||
[community_how_to]
|
||||
other = "Vous pouvez trouver comment contribuer à {{ .Site.Title }} dans nos"
|
||||
[community_guideline]
|
||||
other = "Règles de contribution"
|
81
_vendor/github.com/google/docsy/i18n/hu.toml
generated
Normal file
81
_vendor/github.com/google/docsy/i18n/hu.toml
generated
Normal file
|
@ -0,0 +1,81 @@
|
|||
|
||||
|
||||
# UI strings. Buttons and similar.
|
||||
|
||||
[ui_pager_prev]
|
||||
other = "Előző"
|
||||
|
||||
[ui_pager_next]
|
||||
other = "Következő"
|
||||
|
||||
[ui_read_more]
|
||||
other = "További olvasnivaló"
|
||||
|
||||
[ui_search]
|
||||
other = "Keresés ezen az oldalon…"
|
||||
|
||||
# Used in sentences such as "Posted in News"
|
||||
# TODO: this structure will not work in Hungarian
|
||||
# so I left it as is
|
||||
[ui_in]
|
||||
other = "in"
|
||||
|
||||
# Footer text
|
||||
[footer_all_rights_reserved]
|
||||
other = "Minden jog fenntartva"
|
||||
|
||||
[footer_privacy_policy]
|
||||
other = "Adatvédelmi szabályzat"
|
||||
|
||||
|
||||
# Post (blog, articles etc.)
|
||||
[post_byline_by]
|
||||
other = "Készítette"
|
||||
[post_created]
|
||||
other = "Elkészítve"
|
||||
[post_last_mod]
|
||||
other = "Utolsó módosítás"
|
||||
[post_edit_this]
|
||||
other = "Oldal szerkesztése"
|
||||
[post_create_child_page]
|
||||
other = "Create child page"
|
||||
[post_create_issue]
|
||||
other = "Dokumentáció issue létrehozása"
|
||||
[post_create_project_issue]
|
||||
other = "Projekt issue létrehozása"
|
||||
# TODO: this structure will not work in Hungarian
|
||||
# so I left it as is
|
||||
[post_posts_in]
|
||||
other = "Posts in"
|
||||
[post_reading_time]
|
||||
other = "minute read"
|
||||
[post_less_than_a_minute_read]
|
||||
other = "less than a minute"
|
||||
|
||||
# Print support
|
||||
[print_printable_section]
|
||||
other = "This is the multi-page printable view of this section."
|
||||
[print_click_to_print]
|
||||
other = "Click here to print"
|
||||
[print_show_regular]
|
||||
other = "Return to the regular view of this page"
|
||||
[print_entire_section]
|
||||
other = "Print entire section"
|
||||
|
||||
# Community
|
||||
[community_join]
|
||||
other = "Join the {{ .Site.Title }} community"
|
||||
[community_introduce]
|
||||
other = "{{ .Site.Title }} is an open source project that anyone in the community can use, improve, and enjoy. We'd love you to join us! Here's a few ways to find out what's happening and get involved."
|
||||
[community_learn]
|
||||
other = "Learn and Connect"
|
||||
[community_using]
|
||||
other = "Using or want to use {{ .Site.Title }}? Find out more here:"
|
||||
[community_develop]
|
||||
other = "Develop and Contribute"
|
||||
[community_contribute]
|
||||
other = "If you want to get more involved by contributing to {{ .Site.Title }}, join us here:"
|
||||
[community_how_to]
|
||||
other = "You can find out how to contribute to {{ .Site.Title }} in our"
|
||||
[community_guideline]
|
||||
other = "Contribution Guidelines"
|
77
_vendor/github.com/google/docsy/i18n/it.toml
generated
Normal file
77
_vendor/github.com/google/docsy/i18n/it.toml
generated
Normal file
|
@ -0,0 +1,77 @@
|
|||
|
||||
|
||||
# UI strings. Buttons and similar.
|
||||
|
||||
[ui_pager_prev]
|
||||
other = "Precedente"
|
||||
|
||||
[ui_pager_next]
|
||||
other = "Successivo"
|
||||
|
||||
[ui_read_more]
|
||||
other = "Leggi tutto"
|
||||
|
||||
[ui_search]
|
||||
other = "Cerca nel sito…"
|
||||
|
||||
# Used in sentences such as "Posted in News"
|
||||
[ui_in]
|
||||
other = "in"
|
||||
|
||||
# Footer text
|
||||
[footer_all_rights_reserved]
|
||||
other = "Tutti i diritti riservati"
|
||||
|
||||
[footer_privacy_policy]
|
||||
other = "Privacy Policy"
|
||||
|
||||
|
||||
# Post (blog, articles etc.)
|
||||
[post_byline_by]
|
||||
other = "Di"
|
||||
[post_created]
|
||||
other = "Creato"
|
||||
[post_last_mod]
|
||||
other = "Ultima modifica"
|
||||
[post_edit_this]
|
||||
other = "Modifica"
|
||||
[post_create_child_page]
|
||||
other = "Create child page"
|
||||
[post_create_issue]
|
||||
other = "Crea issue di documentazione"
|
||||
[post_create_project_issue]
|
||||
other = "Crea issue di progetto"
|
||||
[post_posts_in]
|
||||
other = "Post in"
|
||||
[post_reading_time]
|
||||
other = "minute read"
|
||||
[post_less_than_a_minute_read]
|
||||
other = "less than a minute"
|
||||
|
||||
# Print support
|
||||
[print_printable_section]
|
||||
other = "This is the multi-page printable view of this section."
|
||||
[print_click_to_print]
|
||||
other = "Click here to print"
|
||||
[print_show_regular]
|
||||
other = "Return to the regular view of this page"
|
||||
[print_entire_section]
|
||||
other = "Print entire section"
|
||||
|
||||
# Community
|
||||
[community_join]
|
||||
other = "Join the {{ .Site.Title }} community"
|
||||
[community_introduce]
|
||||
other = "{{ .Site.Title }} is an open source project that anyone in the community can use, improve, and enjoy. We'd love you to join us! Here's a few ways to find out what's happening and get involved."
|
||||
[community_learn]
|
||||
other = "Learn and Connect"
|
||||
[community_using]
|
||||
other = "Using or want to use {{ .Site.Title }}? Find out more here:"
|
||||
[community_develop]
|
||||
other = "Develop and Contribute"
|
||||
[community_contribute]
|
||||
other = "If you want to get more involved by contributing to {{ .Site.Title }}, join us here:"
|
||||
[community_how_to]
|
||||
other = "You can find out how to contribute to {{ .Site.Title }} in our"
|
||||
[community_guideline]
|
||||
other = "Contribution Guidelines"
|
77
_vendor/github.com/google/docsy/i18n/ja.toml
generated
Normal file
77
_vendor/github.com/google/docsy/i18n/ja.toml
generated
Normal file
|
@ -0,0 +1,77 @@
|
|||
|
||||
|
||||
# UI strings. Buttons and similar.
|
||||
|
||||
[ui_pager_prev]
|
||||
other = "前へ"
|
||||
|
||||
[ui_pager_next]
|
||||
other = "次へ"
|
||||
|
||||
[ui_read_more]
|
||||
other = "続きを読む"
|
||||
|
||||
[ui_search]
|
||||
other = "サイトを検索..."
|
||||
|
||||
# Used in sentences such as "Posted in News"
|
||||
[ui_in]
|
||||
other = "in"
|
||||
|
||||
# Footer text
|
||||
[footer_all_rights_reserved]
|
||||
other = "All Rights Reserved"
|
||||
|
||||
[footer_privacy_policy]
|
||||
other = "プライバシーポリシー"
|
||||
|
||||
|
||||
# Post (blog, articles etc.)
|
||||
[post_byline_by]
|
||||
other = "By"
|
||||
[post_created]
|
||||
other = "作成"
|
||||
[post_last_mod]
|
||||
other = "最終更新"
|
||||
[post_edit_this]
|
||||
other = "ページの編集"
|
||||
[post_create_child_page]
|
||||
other = "子ページを作成"
|
||||
[post_create_issue]
|
||||
other = "ドキュメントのissueを作成"
|
||||
[post_create_project_issue]
|
||||
other = "プロジェクトのissueを作成"
|
||||
[post_posts_in]
|
||||
other = "記事一覧"
|
||||
[post_reading_time]
|
||||
other = "minute read"
|
||||
[post_less_than_a_minute_read]
|
||||
other = "less than a minute"
|
||||
|
||||
# Print support
|
||||
[print_printable_section]
|
||||
other = "これは、このセクションの複数ページの印刷可能なビューです。"
|
||||
[print_click_to_print]
|
||||
other = "印刷するには、ここをクリックしてください"
|
||||
[print_show_regular]
|
||||
other = "このページの通常のビューに戻る"
|
||||
[print_entire_section]
|
||||
other = "セクション全体を印刷"
|
||||
|
||||
# Community
|
||||
[community_join]
|
||||
other = "Join the {{ .Site.Title }} community"
|
||||
[community_introduce]
|
||||
other = "{{ .Site.Title }} is an open source project that anyone in the community can use, improve, and enjoy. We'd love you to join us! Here's a few ways to find out what's happening and get involved."
|
||||
[community_learn]
|
||||
other = "Learn and Connect"
|
||||
[community_using]
|
||||
other = "Using or want to use {{ .Site.Title }}? Find out more here:"
|
||||
[community_develop]
|
||||
other = "Develop and Contribute"
|
||||
[community_contribute]
|
||||
other = "If you want to get more involved by contributing to {{ .Site.Title }}, join us here:"
|
||||
[community_how_to]
|
||||
other = "You can find out how to contribute to {{ .Site.Title }} in our"
|
||||
[community_guideline]
|
||||
other = "Contribution Guidelines"
|
77
_vendor/github.com/google/docsy/i18n/ko.toml
generated
Normal file
77
_vendor/github.com/google/docsy/i18n/ko.toml
generated
Normal file
|
@ -0,0 +1,77 @@
|
|||
|
||||
|
||||
# UI strings. Buttons and similar.
|
||||
|
||||
[ui_pager_prev]
|
||||
other = "이전"
|
||||
|
||||
[ui_pager_next]
|
||||
other = "다음"
|
||||
|
||||
[ui_read_more]
|
||||
other = "더 읽기"
|
||||
|
||||
[ui_search]
|
||||
other = "사이트에서 검색…"
|
||||
|
||||
# Used in sentences such as "Posted in News"
|
||||
[ui_in]
|
||||
other = "in"
|
||||
|
||||
# Footer text
|
||||
[footer_all_rights_reserved]
|
||||
other = "All Rights Reserved"
|
||||
|
||||
[footer_privacy_policy]
|
||||
other = "개인정보 보호 정책"
|
||||
|
||||
|
||||
# Post (blog, articles etc.)
|
||||
[post_byline_by]
|
||||
other = "By"
|
||||
[post_created]
|
||||
other = "작성"
|
||||
[post_last_mod]
|
||||
other = "최종 수정"
|
||||
[post_edit_this]
|
||||
other = "페이지 편집"
|
||||
[post_create_child_page]
|
||||
other = "하부 페이지 생성"
|
||||
[post_create_issue]
|
||||
other = "문서에 이슈 생성"
|
||||
[post_create_project_issue]
|
||||
other = "프로젝트에 이슈 생성"
|
||||
[post_posts_in]
|
||||
other = "Posts in"
|
||||
[post_reading_time]
|
||||
other = "minute read"
|
||||
[post_less_than_a_minute_read]
|
||||
other = "less than a minute"
|
||||
|
||||
# Print support
|
||||
[print_printable_section]
|
||||
other = "이 섹션의 다중 페이지 출력 화면임."
|
||||
[print_click_to_print]
|
||||
other = "여기를 클릭하여 프린트"
|
||||
[print_show_regular]
|
||||
other = "이 페이지의 일반 화면으로 돌아가기"
|
||||
[print_entire_section]
|
||||
other = "전체 섹션 프린트"
|
||||
|
||||
# Community
|
||||
[community_join]
|
||||
other = "Join the {{ .Site.Title }} community"
|
||||
[community_introduce]
|
||||
other = "{{ .Site.Title }} is an open source project that anyone in the community can use, improve, and enjoy. We'd love you to join us! Here's a few ways to find out what's happening and get involved."
|
||||
[community_learn]
|
||||
other = "Learn and Connect"
|
||||
[community_using]
|
||||
other = "Using or want to use {{ .Site.Title }}? Find out more here:"
|
||||
[community_develop]
|
||||
other = "Develop and Contribute"
|
||||
[community_contribute]
|
||||
other = "If you want to get more involved by contributing to {{ .Site.Title }}, join us here:"
|
||||
[community_how_to]
|
||||
other = "You can find out how to contribute to {{ .Site.Title }} in our"
|
||||
[community_guideline]
|
||||
other = "Contribution Guidelines"
|
77
_vendor/github.com/google/docsy/i18n/nl.toml
generated
Normal file
77
_vendor/github.com/google/docsy/i18n/nl.toml
generated
Normal file
|
@ -0,0 +1,77 @@
|
|||
|
||||
|
||||
# UI strings. Buttons and similar.
|
||||
|
||||
[ui_pager_prev]
|
||||
other = "Vorige"
|
||||
|
||||
[ui_pager_next]
|
||||
other = "Volgende"
|
||||
|
||||
[ui_read_more]
|
||||
other = "Lees meer"
|
||||
|
||||
[ui_search]
|
||||
other = "Doorzoek deze site"
|
||||
|
||||
# Used in sentences such as "Posted in News"
|
||||
[ui_in]
|
||||
other = "in"
|
||||
|
||||
# Footer text
|
||||
[footer_all_rights_reserved]
|
||||
other = "Alle rechten voorbehouden"
|
||||
|
||||
[footer_privacy_policy]
|
||||
other = "Privacy Policy"
|
||||
|
||||
|
||||
# Post (blog, articles etc.)
|
||||
[post_byline_by]
|
||||
other = "Door"
|
||||
[post_created]
|
||||
other = "Aangemaakt"
|
||||
[post_last_mod]
|
||||
other = "Laatst gewijzigd"
|
||||
[post_edit_this]
|
||||
other = "Bewerk deze pagina"
|
||||
[post_create_child_page]
|
||||
other = "Maak sub pagina"
|
||||
[post_create_issue]
|
||||
other = "Maak documentatie issue"
|
||||
[post_create_project_issue]
|
||||
other = "Maak project issue"
|
||||
[post_posts_in]
|
||||
other = "Posts in"
|
||||
[post_reading_time]
|
||||
other = "minuten leestijd"
|
||||
[post_less_than_a_minute_read]
|
||||
other = "minder dan een minuut"
|
||||
|
||||
# Print support
|
||||
[print_printable_section]
|
||||
other = "Dit is de multi-page printable view van deze sectie."
|
||||
[print_click_to_print]
|
||||
other = "Klik hier om te printen"
|
||||
[print_show_regular]
|
||||
other = "Terug naar normale view van deze pagina"
|
||||
[print_entire_section]
|
||||
other = "Print complete sectie"
|
||||
|
||||
# Community
|
||||
[community_join]
|
||||
other = "Join the {{ .Site.Title }} community"
|
||||
[community_introduce]
|
||||
other = "{{ .Site.Title }} is an open source project that anyone in the community can use, improve, and enjoy. We'd love you to join us! Here's a few ways to find out what's happening and get involved."
|
||||
[community_learn]
|
||||
other = "Learn and Connect"
|
||||
[community_using]
|
||||
other = "Using or want to use {{ .Site.Title }}? Find out more here:"
|
||||
[community_develop]
|
||||
other = "Develop and Contribute"
|
||||
[community_contribute]
|
||||
other = "If you want to get more involved by contributing to {{ .Site.Title }}, join us here:"
|
||||
[community_how_to]
|
||||
other = "You can find out how to contribute to {{ .Site.Title }} in our"
|
||||
[community_guideline]
|
||||
other = "Contribution Guidelines"
|
77
_vendor/github.com/google/docsy/i18n/no.toml
generated
Normal file
77
_vendor/github.com/google/docsy/i18n/no.toml
generated
Normal file
|
@ -0,0 +1,77 @@
|
|||
|
||||
|
||||
# UI strings. Buttons and similar.
|
||||
|
||||
[ui_pager_prev]
|
||||
other = "Forrige"
|
||||
|
||||
[ui_pager_next]
|
||||
other = "Neste"
|
||||
|
||||
[ui_read_more]
|
||||
other = "Les mer"
|
||||
|
||||
[ui_search]
|
||||
other = "Søk på nettstedet…"
|
||||
|
||||
# Used in sentences such as "Posted in News"
|
||||
[ui_in]
|
||||
other = "i"
|
||||
|
||||
# Footer text
|
||||
[footer_all_rights_reserved]
|
||||
other = "Alle retter er reservert"
|
||||
|
||||
[footer_privacy_policy]
|
||||
other = "Privacy Policy"
|
||||
|
||||
|
||||
# Post (blog, articles etc.)
|
||||
[post_byline_by]
|
||||
other = "Av"
|
||||
[post_created]
|
||||
other = "Opprettet"
|
||||
[post_last_mod]
|
||||
other = "Sist endret"
|
||||
[post_edit_this]
|
||||
other = "Endre denne siden"
|
||||
[post_create_child_page]
|
||||
other = "Create child page"
|
||||
[post_create_issue]
|
||||
other = "Opprett dokumentasjon sak"
|
||||
[post_create_project_issue]
|
||||
other = "Opprett prosjekt sak"
|
||||
[post_posts_in]
|
||||
other = "Poster i"
|
||||
[post_reading_time]
|
||||
other = "minute read"
|
||||
[post_less_than_a_minute_read]
|
||||
other = "less than a minute"
|
||||
|
||||
# Print support
|
||||
[print_printable_section]
|
||||
other = "This is the multi-page printable view of this section."
|
||||
[print_click_to_print]
|
||||
other = "Click here to print"
|
||||
[print_show_regular]
|
||||
other = "Return to the regular view of this page"
|
||||
[print_entire_section]
|
||||
other = "Print entire section"
|
||||
|
||||
# Community
|
||||
[community_join]
|
||||
other = "Join the {{ .Site.Title }} community"
|
||||
[community_introduce]
|
||||
other = "{{ .Site.Title }} is an open source project that anyone in the community can use, improve, and enjoy. We'd love you to join us! Here's a few ways to find out what's happening and get involved."
|
||||
[community_learn]
|
||||
other = "Learn and Connect"
|
||||
[community_using]
|
||||
other = "Using or want to use {{ .Site.Title }}? Find out more here:"
|
||||
[community_develop]
|
||||
other = "Develop and Contribute"
|
||||
[community_contribute]
|
||||
other = "If you want to get more involved by contributing to {{ .Site.Title }}, join us here:"
|
||||
[community_how_to]
|
||||
other = "You can find out how to contribute to {{ .Site.Title }} in our"
|
||||
[community_guideline]
|
||||
other = "Contribution Guidelines"
|
78
_vendor/github.com/google/docsy/i18n/pl.toml
generated
Normal file
78
_vendor/github.com/google/docsy/i18n/pl.toml
generated
Normal file
|
@ -0,0 +1,78 @@
|
|||
|
||||
|
||||
# UI strings. Buttons and similar.
|
||||
|
||||
[ui_pager_prev]
|
||||
other = "Wstecz"
|
||||
|
||||
[ui_pager_next]
|
||||
other = "Dalej"
|
||||
|
||||
[ui_read_more]
|
||||
other = "Zobacz więcej"
|
||||
|
||||
[ui_search]
|
||||
other = "Szukaj ns stronie ..."
|
||||
|
||||
# Used in sentences such as "Posted in News"
|
||||
[ui_in]
|
||||
other = "w"
|
||||
|
||||
# Footer text
|
||||
[footer_all_rights_reserved]
|
||||
other = "Wszelkie prawa zastrzeżone"
|
||||
|
||||
[footer_privacy_policy]
|
||||
other = "Polityki prywatności"
|
||||
|
||||
|
||||
# Post (blog, articles etc.)
|
||||
[post_byline_by]
|
||||
other = "Przez"
|
||||
[post_created]
|
||||
other = "Utworzono"
|
||||
[post_last_mod]
|
||||
other = "Ostatnia modyfikacja"
|
||||
[post_edit_this]
|
||||
other = "Edytuj tę stronę"
|
||||
[post_create_child_page]
|
||||
other = "Utwórz podstronę"
|
||||
[post_create_issue]
|
||||
other = "Zgłoś błąd w dokumencie"
|
||||
[post_create_project_issue]
|
||||
other = "Zgłoś błąd na stronie"
|
||||
[post_posts_in]
|
||||
other = "Posty"
|
||||
[post_reading_time]
|
||||
other = "min."
|
||||
[post_less_than_a_minute_read]
|
||||
other = "mniej niż minutę"
|
||||
|
||||
|
||||
# Print support
|
||||
[print_printable_section]
|
||||
other = "To wielostronicowy widok tej sekcji do wydrukowania."
|
||||
[print_click_to_print]
|
||||
other = "Kliknij aby wydrukować"
|
||||
[print_show_regular]
|
||||
other = "Wróć do zwykłego widoku tej strony"
|
||||
[print_entire_section]
|
||||
other = "Wydrukuj całą sekcję"
|
||||
|
||||
# Community
|
||||
[community_join]
|
||||
other = "Join the {{ .Site.Title }} community"
|
||||
[community_introduce]
|
||||
other = "{{ .Site.Title }} is an open source project that anyone in the community can use, improve, and enjoy. We'd love you to join us! Here's a few ways to find out what's happening and get involved."
|
||||
[community_learn]
|
||||
other = "Learn and Connect"
|
||||
[community_using]
|
||||
other = "Using or want to use {{ .Site.Title }}? Find out more here:"
|
||||
[community_develop]
|
||||
other = "Develop and Contribute"
|
||||
[community_contribute]
|
||||
other = "If you want to get more involved by contributing to {{ .Site.Title }}, join us here:"
|
||||
[community_how_to]
|
||||
other = "You can find out how to contribute to {{ .Site.Title }} in our"
|
||||
[community_guideline]
|
||||
other = "Contribution Guidelines"
|
77
_vendor/github.com/google/docsy/i18n/pt-br.toml
generated
Normal file
77
_vendor/github.com/google/docsy/i18n/pt-br.toml
generated
Normal file
|
@ -0,0 +1,77 @@
|
|||
|
||||
|
||||
# UI strings. Buttons and similar.
|
||||
|
||||
[ui_pager_prev]
|
||||
other = "Anterior"
|
||||
|
||||
[ui_pager_next]
|
||||
other = "Próximo"
|
||||
|
||||
[ui_read_more]
|
||||
other = "Ler mais"
|
||||
|
||||
[ui_search]
|
||||
other = "Buscar no site…"
|
||||
|
||||
# Used in sentences such as "Posted in News"
|
||||
[ui_in]
|
||||
other = "em"
|
||||
|
||||
# Footer text
|
||||
[footer_all_rights_reserved]
|
||||
other = "Todos os direitos reservados"
|
||||
|
||||
[footer_privacy_policy]
|
||||
other = "Política de Privacidade"
|
||||
|
||||
|
||||
# Post (blog, articles etc.)
|
||||
[post_byline_by]
|
||||
other = "Por"
|
||||
[post_created]
|
||||
other = "Criado"
|
||||
[post_last_mod]
|
||||
other = "Última modificação"
|
||||
[post_edit_this]
|
||||
other = "Editar essa página"
|
||||
[post_create_child_page]
|
||||
other = "Criar uma subpágina"
|
||||
[post_create_issue]
|
||||
other = "Relatar um problema de documentação"
|
||||
[post_create_project_issue]
|
||||
other = "Relatar um problema no projeto"
|
||||
[post_posts_in]
|
||||
other = "Posts em"
|
||||
[post_reading_time]
|
||||
other = "minute read"
|
||||
[post_less_than_a_minute_read]
|
||||
other = "less than a minute"
|
||||
|
||||
# Print support
|
||||
[print_printable_section]
|
||||
other = "This is the multi-page printable view of this section."
|
||||
[print_click_to_print]
|
||||
other = "Click here to print"
|
||||
[print_show_regular]
|
||||
other = "Return to the regular view of this page"
|
||||
[print_entire_section]
|
||||
other = "Print entire section"
|
||||
|
||||
# Community
|
||||
[community_join]
|
||||
other = "Join the {{ .Site.Title }} community"
|
||||
[community_introduce]
|
||||
other = "{{ .Site.Title }} is an open source project that anyone in the community can use, improve, and enjoy. We'd love you to join us! Here's a few ways to find out what's happening and get involved."
|
||||
[community_learn]
|
||||
other = "Learn and Connect"
|
||||
[community_using]
|
||||
other = "Using or want to use {{ .Site.Title }}? Find out more here:"
|
||||
[community_develop]
|
||||
other = "Develop and Contribute"
|
||||
[community_contribute]
|
||||
other = "If you want to get more involved by contributing to {{ .Site.Title }}, join us here:"
|
||||
[community_how_to]
|
||||
other = "You can find out how to contribute to {{ .Site.Title }} in our"
|
||||
[community_guideline]
|
||||
other = "Contribution Guidelines"
|
81
_vendor/github.com/google/docsy/i18n/ru.toml
generated
Normal file
81
_vendor/github.com/google/docsy/i18n/ru.toml
generated
Normal file
|
@ -0,0 +1,81 @@
|
|||
# UI strings. Buttons and similar.
|
||||
|
||||
[ui_pager_prev]
|
||||
other = "Предыдущая"
|
||||
|
||||
[ui_pager_next]
|
||||
other = "Следующая"
|
||||
|
||||
[ui_read_more]
|
||||
other = "Подробнее"
|
||||
|
||||
[ui_search]
|
||||
other = "Поиск по сайту…"
|
||||
|
||||
# Used in sentences such as "Posted in News"
|
||||
[ui_in]
|
||||
other = "в"
|
||||
|
||||
# Used in sentences such as "All Tags"
|
||||
[ui_all]
|
||||
other = "всё"
|
||||
|
||||
# Footer text
|
||||
[footer_all_rights_reserved]
|
||||
other = "Все права защищены"
|
||||
|
||||
[footer_privacy_policy]
|
||||
other = "Политика конфиденциальности"
|
||||
|
||||
|
||||
# Post (blog, articles etc.)
|
||||
[post_byline_by]
|
||||
other = "Автор"
|
||||
[post_created]
|
||||
other = "Создано"
|
||||
[post_last_mod]
|
||||
other = "Изменено"
|
||||
[post_edit_this]
|
||||
other = "Отредактировать страницу"
|
||||
[post_view_this]
|
||||
other = "Увидеть источник страницы"
|
||||
[post_create_child_page]
|
||||
other = "Создать дополнительную страницу"
|
||||
[post_create_issue]
|
||||
other = "Предложить изменения документации"
|
||||
[post_create_project_issue]
|
||||
other = "Предложить доработки по проекту"
|
||||
[post_posts_in]
|
||||
other = "Публикации в"
|
||||
[post_reading_time]
|
||||
other = "минутное чтение"
|
||||
[post_less_than_a_minute_read]
|
||||
other = "меньше минуты"
|
||||
|
||||
# Print support
|
||||
[print_printable_section]
|
||||
other = "Это многостраничный печатный вид этого раздела."
|
||||
[print_click_to_print]
|
||||
other = "Нажмите что бы печатать"
|
||||
[print_show_regular]
|
||||
other = "Вернуться к обычному просмотру страницы"
|
||||
[print_entire_section]
|
||||
other = "Печатать весь раздел"
|
||||
|
||||
# Community
|
||||
[community_join]
|
||||
other = "Присоединяйтесь к {{ .Site.Title }} комьюнити"
|
||||
[community_introduce]
|
||||
other = "{{ .Site.Title }} - это проект с открытым кодом который любой в комьюнити может использовать, улучшать и наслаждаться. Мы будем рады видеть тебя с нами! Вот несколько путей как присоединиться к нам, знать что происходит и быть вовлеченным."
|
||||
[community_learn]
|
||||
other = "Изучай и Присоединяйся"
|
||||
[community_using]
|
||||
other = "Уже пользуешься или хочешь пользоваться {{ .Site.Title }}? Узнай больше здесь:"
|
||||
[community_develop]
|
||||
other = "Розвивай и Вноси свой вклад"
|
||||
[community_contribute]
|
||||
other = "Если ты хочешь принять более активное участие, внося свой вклад в {{ .Site.Title }}, присоединяйся к нам тут:"
|
||||
[community_how_to]
|
||||
other = "Ты можешь узнать как сделать вклад в эти документы в нашем"
|
||||
[community_guideline]
|
||||
other = "Рекомендации касательно вклада"
|
81
_vendor/github.com/google/docsy/i18n/sv.toml
generated
Normal file
81
_vendor/github.com/google/docsy/i18n/sv.toml
generated
Normal file
|
@ -0,0 +1,81 @@
|
|||
# UI strings. Buttons and similar.
|
||||
|
||||
[ui_pager_prev]
|
||||
other = "Tidigare"
|
||||
|
||||
[ui_pager_next]
|
||||
other = "Nästa"
|
||||
|
||||
[ui_read_more]
|
||||
other = "Läs mer"
|
||||
|
||||
[ui_search]
|
||||
other = "Sök denna sida…"
|
||||
|
||||
# Used in sentences such as "Posted in News"
|
||||
[ui_in]
|
||||
other = "i"
|
||||
|
||||
# Used in sentences such as "All Tags"
|
||||
[ui_all]
|
||||
other = "alla"
|
||||
|
||||
# Footer text
|
||||
[footer_all_rights_reserved]
|
||||
other = "Alla rättigheter förbehållna"
|
||||
|
||||
[footer_privacy_policy]
|
||||
other = "Integritetspolicy"
|
||||
|
||||
|
||||
# Post (blog, articles etc.)
|
||||
[post_byline_by]
|
||||
other = "Av"
|
||||
[post_created]
|
||||
other = "Skapat"
|
||||
[post_last_mod]
|
||||
other = "Senast ändrad"
|
||||
[post_edit_this]
|
||||
other = "Redigera sida"
|
||||
[post_view_this]
|
||||
other = "Visa sidans källa"
|
||||
[post_create_child_page]
|
||||
other = "Skapa barnsida"
|
||||
[post_create_issue]
|
||||
other = "Skapa dokumentationsfråga"
|
||||
[post_create_project_issue]
|
||||
other = "Skapa projektfråga"
|
||||
[post_posts_in]
|
||||
other = "Inlägg i"
|
||||
[post_reading_time]
|
||||
other = "minuter läst"
|
||||
[post_less_than_a_minute_read]
|
||||
other = "mindre än en minut"
|
||||
|
||||
# Print support
|
||||
[print_printable_section]
|
||||
other = "Detta är den flersidiga utskrivbara vyn av detta avsnitt."
|
||||
[print_click_to_print]
|
||||
other = "Klicka här för att skriva ut"
|
||||
[print_show_regular]
|
||||
other = "Återgå till den vanliga vyn på denna sida"
|
||||
[print_entire_section]
|
||||
other = "Skriv ut hela avsnittet"
|
||||
|
||||
# Community
|
||||
[community_join]
|
||||
other = "Gå med i {{ .Site.Title }} samhället"
|
||||
[community_introduce]
|
||||
other = "{{ .Site.Title }} är ett projekt med öppen källkod som alla i samhället kan använda, förbättra och njuta av. Vi vill gärna att du är med! Här är några sätt att ta reda på vad som händer och engagera dig."
|
||||
[community_learn]
|
||||
other = "Lär dig och Anslut"
|
||||
[community_using]
|
||||
other = "Använder eller vill använda {{ .Site.Title }}? Ta reda på mer här:"
|
||||
[community_develop]
|
||||
other = "Utveckla och Medverka"
|
||||
[community_contribute]
|
||||
other = "Om du vill engagera dig mer genom att medverka till {{ .Site.Title }}, gå med oss här:"
|
||||
[community_how_to]
|
||||
other = "Du kan ta reda på hur du medverkar till {{ .Site.Title }} i våra"
|
||||
[community_guideline]
|
||||
other = "Riktlinjer för att Medverka"
|
77
_vendor/github.com/google/docsy/i18n/tr.toml
generated
Normal file
77
_vendor/github.com/google/docsy/i18n/tr.toml
generated
Normal file
|
@ -0,0 +1,77 @@
|
|||
|
||||
|
||||
# UI strings. Buttons and similar.
|
||||
|
||||
[ui_pager_prev]
|
||||
other = "Önceki"
|
||||
|
||||
[ui_pager_next]
|
||||
other = "Sonraki"
|
||||
|
||||
[ui_read_more]
|
||||
other = "Daha fazla oku"
|
||||
|
||||
[ui_search]
|
||||
other = "Bu sitede arayın…"
|
||||
|
||||
# Used in sentences such as "Posted in News"
|
||||
[ui_in]
|
||||
other = "içinde"
|
||||
|
||||
# Footer text
|
||||
[footer_all_rights_reserved]
|
||||
other = "Bütün haklar saklıdır"
|
||||
|
||||
[footer_privacy_policy]
|
||||
other = "Gizlilik Politikası"
|
||||
|
||||
|
||||
# Post (blog, articles etc.)
|
||||
[post_byline_by]
|
||||
other = "by"
|
||||
[post_created]
|
||||
other = "Oluşturuldu"
|
||||
[post_last_mod]
|
||||
other = "Son düzenleme"
|
||||
[post_edit_this]
|
||||
other = "Bu sayfayı düzenle"
|
||||
[post_create_child_page]
|
||||
other = "Çocuk sayfası oluştur"
|
||||
[post_create_issue]
|
||||
other = "Belge konusu oluştur"
|
||||
[post_create_project_issue]
|
||||
other = "Proje konusu oluştur"
|
||||
[post_posts_in]
|
||||
other = "Gönderiler in"
|
||||
[post_reading_time]
|
||||
other = "minute read"
|
||||
[post_less_than_a_minute_read]
|
||||
other = "less than a minute"
|
||||
|
||||
# Print support
|
||||
[print_printable_section]
|
||||
other = "Bu bölümün görüntüsü yazdırılabilir."
|
||||
[print_click_to_print]
|
||||
other = "Yazdırmak için tıklayın"
|
||||
[print_show_regular]
|
||||
other = "Bu sayfanın normal görüntüsüne dönün"
|
||||
[print_entire_section]
|
||||
other = "Bütün bölümü yazıdırın"
|
||||
|
||||
# Community
|
||||
[community_join]
|
||||
other = "Join the {{ .Site.Title }} community"
|
||||
[community_introduce]
|
||||
other = "{{ .Site.Title }} is an open source project that anyone in the community can use, improve, and enjoy. We'd love you to join us! Here's a few ways to find out what's happening and get involved."
|
||||
[community_learn]
|
||||
other = "Learn and Connect"
|
||||
[community_using]
|
||||
other = "Using or want to use {{ .Site.Title }}? Find out more here:"
|
||||
[community_develop]
|
||||
other = "Develop and Contribute"
|
||||
[community_contribute]
|
||||
other = "If you want to get more involved by contributing to {{ .Site.Title }}, join us here:"
|
||||
[community_how_to]
|
||||
other = "You can find out how to contribute to {{ .Site.Title }} in our"
|
||||
[community_guideline]
|
||||
other = "Contribution Guidelines"
|
81
_vendor/github.com/google/docsy/i18n/uk.toml
generated
Normal file
81
_vendor/github.com/google/docsy/i18n/uk.toml
generated
Normal file
|
@ -0,0 +1,81 @@
|
|||
# UI strings. Buttons and similar.
|
||||
|
||||
[ui_pager_prev]
|
||||
other = "Попередня"
|
||||
|
||||
[ui_pager_next]
|
||||
other = "Наступна"
|
||||
|
||||
[ui_read_more]
|
||||
other = "Детальніше"
|
||||
|
||||
[ui_search]
|
||||
other = "Пошук по сайту…"
|
||||
|
||||
# Used in sentences such as "Posted in News"
|
||||
[ui_in]
|
||||
other = "у"
|
||||
|
||||
# Used in sentences such as "All Tags"
|
||||
[ui_all]
|
||||
other = "все"
|
||||
|
||||
# Footer text
|
||||
[footer_all_rights_reserved]
|
||||
other = "Усі права захищені"
|
||||
|
||||
[footer_privacy_policy]
|
||||
other = "Політика конфіденційності"
|
||||
|
||||
|
||||
# Post (blog, articles etc.)
|
||||
[post_byline_by]
|
||||
other = "Автор"
|
||||
[post_created]
|
||||
other = "Створено"
|
||||
[post_last_mod]
|
||||
other = "Змінено"
|
||||
[post_edit_this]
|
||||
other = "Відредагувати сторінку"
|
||||
[post_view_this]
|
||||
other = "Побачити джерело сторінки"
|
||||
[post_create_child_page]
|
||||
other = "Створити додаткову сторінку"
|
||||
[post_create_issue]
|
||||
other = "Запропонувати змінення документації"
|
||||
[post_create_project_issue]
|
||||
other = "Запропонувати допрацювання по проекту"
|
||||
[post_posts_in]
|
||||
other = "Публикації у"
|
||||
[post_reading_time]
|
||||
other = "хвилина читання"
|
||||
[post_less_than_a_minute_read]
|
||||
other = "менше хвилини"
|
||||
|
||||
# Print support
|
||||
[print_printable_section]
|
||||
other = "Це багатосторінковий друкований вигляд цього розділу."
|
||||
[print_click_to_print]
|
||||
other = "Натисність щоб друкувати"
|
||||
[print_show_regular]
|
||||
other = "Повернутися до звичайного перегляду сторінки"
|
||||
[print_entire_section]
|
||||
other = "Друкувати увесь розділ"
|
||||
|
||||
# Community
|
||||
[community_join]
|
||||
other = "Приєднуйтесь до {{ .Site.Title }} спільноти"
|
||||
[community_introduce]
|
||||
other = "{{ .Site.Title }} - це проект з відкритим кодом, який будь-хто в спільноті може використовувати, покращувати та насолоджуватися. Ми будемо раді бачити тебе з нами! Ось декілька опцій щоб знати що відбувається та залучитись."
|
||||
[community_learn]
|
||||
other = "Вивчай та Приєднуйся"
|
||||
[community_using]
|
||||
other = "Користуєшся чи хотів би користуватись {{ .Site.Title }}? Дізнайся більше тут:"
|
||||
[community_develop]
|
||||
other = "Розвивай та Роби внесок"
|
||||
[community_contribute]
|
||||
other = "Якщо хочеш бути більш залученим, роблячи внесок у {{ .Site.Title }}, приєднуйся до нас тут:"
|
||||
[community_how_to]
|
||||
other = "Дізнайся як зробити внесок до цих документів в нашому"
|
||||
[community_guideline]
|
||||
other = "Рекомендації щодо внеску"
|
81
_vendor/github.com/google/docsy/i18n/zh-cn.toml
generated
Normal file
81
_vendor/github.com/google/docsy/i18n/zh-cn.toml
generated
Normal file
|
@ -0,0 +1,81 @@
|
|||
# UI strings. Buttons and similar.
|
||||
|
||||
[ui_pager_prev]
|
||||
other = "上一页"
|
||||
|
||||
[ui_pager_next]
|
||||
other = "下一页"
|
||||
|
||||
[ui_read_more]
|
||||
other = "更多"
|
||||
|
||||
[ui_search]
|
||||
other = "站内搜索…"
|
||||
|
||||
# Used in sentences such as "Posted in News"
|
||||
[ui_in]
|
||||
other = "在"
|
||||
|
||||
# Used in sentences such as "All Tags"
|
||||
[ui_all]
|
||||
other = "所有"
|
||||
|
||||
# Footer text
|
||||
[footer_all_rights_reserved]
|
||||
other = "保留所有权利"
|
||||
|
||||
[footer_privacy_policy]
|
||||
other = "隐私政策"
|
||||
|
||||
|
||||
# Post (blog, articles etc.)
|
||||
[post_byline_by]
|
||||
other = "借由"
|
||||
[post_created]
|
||||
other = "创建"
|
||||
[post_last_mod]
|
||||
other = "最后修改"
|
||||
[post_edit_this]
|
||||
other = "编辑此页"
|
||||
[post_view_this]
|
||||
other = "查看页面源码"
|
||||
[post_create_child_page]
|
||||
other = "添加子页面"
|
||||
[post_create_issue]
|
||||
other = "提交文档问题"
|
||||
[post_create_project_issue]
|
||||
other = "提交项目问题"
|
||||
[post_posts_in]
|
||||
other = "张贴在"
|
||||
[post_reading_time]
|
||||
other = "分钟阅读"
|
||||
[post_less_than_a_minute_read]
|
||||
other = "少于1分钟"
|
||||
|
||||
# Print support
|
||||
[print_printable_section]
|
||||
other = "这是本节的多页打印视图。"
|
||||
[print_click_to_print]
|
||||
other = "点击此处打印"
|
||||
[print_show_regular]
|
||||
other = "返回本页常规视图"
|
||||
[print_entire_section]
|
||||
other = "整节打印"
|
||||
|
||||
# Community
|
||||
[community_join]
|
||||
other = "加入 {{ .Site.Title }} 社区"
|
||||
[community_introduce]
|
||||
other = "{{ .Site.Title }} 是一个开源项目,社区中的任何人都可以使用、改善和尽情使用它。我们很期待你能加入我们!下面是如何查看最近更新以及参与我们的一些方式。"
|
||||
[community_learn]
|
||||
other = "学习和沟通"
|
||||
[community_using]
|
||||
other = "正在或打算使用 {{ .Site.Title }} ?获取更多信息:"
|
||||
[community_develop]
|
||||
other = "开发和贡献"
|
||||
[community_contribute]
|
||||
other = "如果你想通过为 {{ .Site.Title }} 贡献更多参与,请在此处加入我们:"
|
||||
[community_how_to]
|
||||
other = "你可以了解如何为 {{ .Site.Title }} 做出贡献,请参考我们的"
|
||||
[community_guideline]
|
||||
other = "贡献指南"
|
81
_vendor/github.com/google/docsy/i18n/zh-tw.toml
generated
Normal file
81
_vendor/github.com/google/docsy/i18n/zh-tw.toml
generated
Normal file
|
@ -0,0 +1,81 @@
|
|||
# UI strings. Buttons and similar.
|
||||
|
||||
[ui_pager_prev]
|
||||
other = "上一頁"
|
||||
|
||||
[ui_pager_next]
|
||||
other = "下一頁"
|
||||
|
||||
[ui_read_more]
|
||||
other = "更多"
|
||||
|
||||
[ui_search]
|
||||
other = "站內搜索…"
|
||||
|
||||
# Used in sentences such as "Posted in News"
|
||||
[ui_in]
|
||||
other = "在"
|
||||
|
||||
# Used in sentences such as "All Tags"
|
||||
[ui_all]
|
||||
other = "所有"
|
||||
|
||||
# Footer text
|
||||
[footer_all_rights_reserved]
|
||||
other = "保留所有權利"
|
||||
|
||||
[footer_privacy_policy]
|
||||
other = "隱私政策"
|
||||
|
||||
|
||||
# Post (blog, articles etc.)
|
||||
[post_byline_by]
|
||||
other = "藉由"
|
||||
[post_created]
|
||||
other = "創建"
|
||||
[post_last_mod]
|
||||
other = "最後修改"
|
||||
[post_edit_this]
|
||||
other = "編輯此頁"
|
||||
[post_view_this]
|
||||
other = "查看頁面原始碼"
|
||||
[post_create_child_page]
|
||||
other = "創建子頁面"
|
||||
[post_create_issue]
|
||||
other = "創建文檔議題"
|
||||
[post_create_project_issue]
|
||||
other = "創建項目議題"
|
||||
[post_posts_in]
|
||||
other = "張貼在"
|
||||
[post_reading_time]
|
||||
other = "分鐘閱讀"
|
||||
[post_less_than_a_minute_read]
|
||||
other = "少於1分鐘"
|
||||
|
||||
# Print support
|
||||
[print_printable_section]
|
||||
other = "這是本節的多頁可打印視圖。"
|
||||
[print_click_to_print]
|
||||
other = "點擊此處打印"
|
||||
[print_show_regular]
|
||||
other = "返回此頁面的常規視圖"
|
||||
[print_entire_section]
|
||||
other = "打印整個章節"
|
||||
|
||||
# Community
|
||||
[community_join]
|
||||
other = "加入 {{ .Site.Title }} 社群"
|
||||
[community_introduce]
|
||||
other = "{{ .Site.Title }} 是一個開源項目,社群中的任何人都可以使用、改善和盡情使用它。我們很期待你能加入我們!下面是如何查看最近更新以及參與我們的一些方式。"
|
||||
[community_learn]
|
||||
other = "學習和溝通"
|
||||
[community_using]
|
||||
other = "正在或打算使用 {{ .Site.Title }} ?獲取更多資訊:"
|
||||
[community_develop]
|
||||
other = "開發和貢獻"
|
||||
[community_contribute]
|
||||
other = "如果你想通過為 {{ .Site.Title }} 貢獻更多參與,請在此處加入我們:"
|
||||
[community_how_to]
|
||||
other = "你可以了解如何為 {{ .Site.Title }} 做出貢獻,請參考我們的"
|
||||
[community_guideline]
|
||||
other = "貢獻指南"
|
6
_vendor/github.com/google/docsy/layouts/404.html
generated
Normal file
6
_vendor/github.com/google/docsy/layouts/404.html
generated
Normal file
|
@ -0,0 +1,6 @@
|
|||
{{ define "main" -}}
|
||||
<div class="td-content">
|
||||
<h1>Not found</h1>
|
||||
<p>Oops! This page doesn't exist. Try going back to the <a href="{{ "" | relURL }}">home page</a>.</p>
|
||||
</div>
|
||||
{{- end }}
|
Some files were not shown because too many files have changed in this diff Show more
Loading…
Reference in a new issue