Fix Subtle shift when hovering on "Create new file" button (#754)

This commit is contained in:
Aaron Crowder 2017-11-10 01:23:47 -07:00 коммит произвёл Federico Brigante
Родитель a656d29869
Коммит 0498e8d4ae
3 изменённых файлов: 15 добавлений и 5 удалений

Просмотреть файл

@ -199,11 +199,6 @@ a .commit-ref:hover span {
display: none !important;
}
/* Remove Upload files button; drag and drop is available anyway */
.file-navigation a[href*="/upload/"] {
display: none !important;
}
/* Style for edit README button */
#readme.blob #refined-github-readme-buttons {
display: none;

Просмотреть файл

@ -19,6 +19,7 @@ import addOPLabels from './features/op-labels';
import addMoreDropdown from './features/more-dropdown';
import addReleasesTab from './features/add-releases-tab';
import addTimeMachineLinksToComments from './features/add-time-machine-links-to-comments';
import removeUploadFilesButton from './features/remove-upload-files-button';
import scrollToTopOnCollapse from './features/scroll-to-top-on-collapse';
import removeDiffSigns from './features/remove-diff-signs';
import * as linkifyBranchRefs from './features/linkify-branch-refs';
@ -125,6 +126,7 @@ function onDomReady() {
function ajaxedPagesHandler() {
safely(hideEmptyMeta);
safely(removeUploadFilesButton);
safely(addTitleToEmojis);
safely(enableCopyOnY.destroy);

Просмотреть файл

@ -0,0 +1,13 @@
import select from 'select-dom';
import * as pageDetect from '../libs/page-detect';
const repoUrl = pageDetect.getRepoURL();
export default () => {
if (pageDetect.isRepoRoot()) {
const uploadFilesButton = select(`.file-navigation a[href^="/${repoUrl}/upload"]`);
if (uploadFilesButton) {
uploadFilesButton.remove();
}
}
};