Press n or j to go to the next uncovered block, b, p or k for the previous block.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 | import styled from "styled-components"; export const StyledPluginManagerWindow = styled.div` display: flex; flex-direction: column; height: 100%; `; export const StyledPluginManagerListColumn = styled.div` display: flex; flex-direction: column; flex-grow: 1; background: ${(props) => props.theme.colors.sidebar.background}; border-bottom: 1px solid ${(props) => props.theme.colors.sidebar.border}; `; export const StyledPluginManagerSearch = styled.div` display: flex; padding: 5px; & > *:not(:last-child) { width: 120px; margin-right: 5px; } & > :first-child { flex-grow: 1; } `; export const StyledPluginManagerSearchResults = styled.div` height: 200px; flex-grow: 1; & > * > * { overflow-y: scroll !important; } `; export const StyledPluginManagerNoResults = styled.div` padding: 5px 10px; font-size: 11px; `; export const StyledPluginManagerDetailColumn = styled.div` height: 100%; width: 100%; display: flex; flex-direction: column; overflow: hidden; background: ${(props) => props.theme.colors.input.background}; `; export const StyledPluginManagerDetail = styled.div` user-select: text; flex-grow: 1; width: 100%; box-sizing: border-box; padding: 10px; h1 { margin-top: 0; } h2 { marigin-top: 0; } img { max-width: 100%; } overflow: auto; `; export const StyledPluginManagerToolbar = styled.div` font-size: 11px; display: flex; min-height: 30px; padding: 10px; align-items: center; background: ${(props) => props.theme.colors.sidebar.background}; border-top: 1px solid ${(props) => props.theme.colors.sidebar.border}; & > *:not(:last-child) { margin-right: 5px; } `; export const StyledPluginManagerNoSelectionView = styled.div` display: flex; height: 100%; width: 100%; justify-content: center; align-items: center; `; export const StyledPluginImageCarousel = styled.div` display: flex; overflow-x: auto; overflow-y: hidden; img { height: 150px; } & > *:not(:last-child) { margin-right: 5px; } `; export const StyledPluginItemRow = styled.div` display: flex; `; export const StyledPluginItemRowName = styled.div` flex-grow: 1; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; `; export const StyledPluginItemRowType = styled.div` width: 125px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; `; export const StyledPluginItemRowRepo = styled.div` width: 135px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; `; export const StyledPluginItemRowRepoName = styled.div` width: 125px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; `; export const StyledPluginItemRowRepoUrl = styled.div` flex-grow: 1; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; `; export const StyledPluginItemRowRepoBtns = styled.div` white-space: nowrap; overflow: hidden; text-overflow: ellipsis; ${StyledPluginItemRow} & { opacity: 0; } ${StyledPluginItemRow}:hover & { opacity: 1; } `; export const StyledPluginManagerRepoForm = styled.form` padding: 10px; & input { margin-bottom: 10px; } background: ${(props) => props.theme.colors.scripting.form.background}; `; export const StyledPluginManagerRepoBtns = styled.div` display: flex; `; export const StyledPillButtonWrapper = styled.div` display: flex; & > *:not(:first-child) { margin-left: 5px; } margin-bottom: 10px; `; |